File tree 3 files changed +6
-6
lines changed
templates/project-version
3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 54
54
<div class =' parameter' >
55
55
<dt >{{ param.name }} </dt >
56
56
<dd class =' parameter-type' >{{ param.type }} </dd >
57
- <dd >{{ param.description }} </dd >
57
+ <dd >{{ markdown-to-html param.description }} </dd >
58
58
{{ #if param.props }}
59
59
<dl class =' parameters' >
60
60
{{ #each param.props as |prop |}}
61
61
<div class =' prop' >
62
62
<dt >{{ prop.name }} </dt >
63
63
<dd class =' parameter-type' >{{ prop.type }} </dd >
64
- <dd >{{ prop.description }} </dd >
64
+ <dd >{{ markdown-to-html prop.description }} </dd >
65
65
</div >
66
66
{{ /each }}
67
67
</dl >
72
72
<div class =' return' >
73
73
<dt >returns</dt >
74
74
<dd class =' return-type' >{{ @field.return.type }} </dd >
75
- <dd >{{ @field.return.description }} </dd >
75
+ <dd >{{ markdown-to-html @field.return.description }} </dd >
76
76
</div >
77
77
{{ /if }}
78
78
</dl >
79
- {{ html-safe @field.description }}
79
+ {{ markdown-to-html @field.description }}
80
80
</section >
Original file line number Diff line number Diff line change 63
63
{{ #if (and (not (eq this.static 1 )) this.hasImportExample )}}
64
64
<ImportExample @item ={{ @model.name }} @package ={{ this.module }} />
65
65
{{ /if }}
66
- <p class =" description" >{{ html-safe @model.description }} </p >
66
+ <p class =" description" >{{ markdown-to-html @model.description }} </p >
67
67
68
68
{{ #if (or @model.methods @model.properties @model.events )}}
69
69
<div class =" tabbed-layout" >
Original file line number Diff line number Diff line change 15
15
{{ /if }}
16
16
</p >
17
17
18
- <p class =" description" >{{ html-safe this.model.description }} </p >
18
+ <p class =" description" >{{ markdown-to-html this.model.description }} </p >
19
19
20
20
{{ #if this.submodules }}
21
21
<section >
You can’t perform that action at this time.
0 commit comments