File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 2
2
{% assign eid = include.entry.name | downcase %}
3
3
< h4 id ="{{eid}} " class ="entries-title "> {% if include.ispage == false %}< a href ="/reference/{{id}}/{{include.entry.name}}.html "> {% endif %}{{include.entry.codetitle}}{% if include.ispage == false %}</ a > {% endif %}</ h4 >
4
4
{% if include.entry.description != null %}
5
- < p class ="descriptions "> {{include.entry.description}}</ p >
5
+ < p class ="descriptions "> {{include.entry.description | markdownify }}</ p >
6
6
{% endif %}
7
7
<!-- we test if the include.entry has a parameters -->
8
8
< div class ="type ">
@@ -13,7 +13,7 @@ <h4 id="{{eid}}" class="entries-title">{% if include.ispage == false %}<a href="
13
13
< p > < strong > Parameter(s):</ strong > </ p >
14
14
< ul >
15
15
{% for param in include.entry.parameters %}
16
- < li > < strong > {{param.name}}</ strong > {% raw %}{{% endraw %}{% for type in param.type %}{{type}}{% unless forloop.last %} | {% endunless %}{% endfor %}{% raw %}}{% endraw %}{% if param.optional %} < em > Optional:</ em > {%else%}:{% endif %}< br > {{param.description}}</ li > {% endfor %}
16
+ < li > < strong > {{param.name}}</ strong > {% raw %}{{% endraw %}{% for type in param.type %}{{type}}{% unless forloop.last %} | {% endunless %}{% endfor %}{% raw %}}{% endraw %}{% if param.optional %} < em > Optional:</ em > {%else%}:{% endif %}< br > {{param.description | markdownify }}</ li > {% endfor %}
17
17
</ ul >
18
18
</ div > <!-- end parameters div -->
19
19
{% endif %}
@@ -23,7 +23,7 @@ <h4 id="{{eid}}" class="entries-title">{% if include.ispage == false %}<a href="
23
23
< ul >
24
24
< li >
25
25
{% raw %}{{% endraw %}{% for type in include.entry.returns.type %}{{type}}{% unless forloop.last %} | {% endunless %}{% endfor %}{% raw %}}{% endraw %}:< br >
26
- {{include.entry.returns.description}}
26
+ {{include.entry.returns.description | markdownify }}
27
27
</ li >
28
28
</ ul >
29
29
</ div >
You can’t perform that action at this time.
0 commit comments