mirror of
https://github.com/vale981/quickdocs-server
synced 2025-03-04 16:51:38 -05:00
Fix API reference page to show initial-value of variables and slots of structs.
This commit is contained in:
parent
20059905b8
commit
e504250249
1 changed files with 2 additions and 1 deletions
|
@ -65,9 +65,10 @@
|
||||||
</span>
|
</span>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if symbol.initial-value %}
|
{% if symbol.initial-value %}
|
||||||
|
<span class="initial-value">{{ symbol.initial-value }}</span>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<div class="docstring">{{ symbol.docstring }}</div>
|
<div class="docstring">{{ symbol.docstring }}</div>
|
||||||
{% if symbol.type == "class" %}
|
{% if symbol.type == "class" or symbol.type == "struct" %}
|
||||||
{% if symbol.slots %}
|
{% if symbol.slots %}
|
||||||
<dl class="slot-list">
|
<dl class="slot-list">
|
||||||
{% for slot in symbol.slots %}
|
{% for slot in symbol.slots %}
|
||||||
|
|
Loading…
Add table
Reference in a new issue