File tree Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -63,7 +63,17 @@ <h2>API Reference</h2>
63
63
{% endfor %}
64
64
{% if render %}
65
65
< div id ="method_{{ name | slugify }} " class ="api_method_wrapper ">
66
- {{ method.description.full | markdownify }}
66
+ {{ method.description.summary | markdownify }}
67
+ < ul >
68
+ {% for tag in method.tags %}
69
+ {% if tag.type == "param" %}
70
+ < li > @{{ tag.type }} { {{ tag.types | join: ' | ' }} } {{ tag.name }} {{ tag.description }}</ li >
71
+ {% elsif tag.type == "see" %}
72
+ < li > @{{ tag.type }} {% if tag.url %}< a href ='{{ tag.url }} ' target ='_blank '> {{ tag.url }}</ a > {% else %}{{ tag.local }}{% endif %}</ li >
73
+ {% endif %}
74
+ {% endfor %}
75
+ </ ul >
76
+ {{ method.description.body | markdownify }}
67
77
</ div >
68
78
{% endif %}
69
79
{% endfor %}
You can’t perform that action at this time.
0 commit comments