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