Commit 80a90166 by Jan-Piet Mens

module docs: fixed rst template

- notes is now supported
- multiline code examples are now supported (HTML rendering was off)
parent 13e8ef5f
......@@ -18,7 +18,7 @@
@{ desc | jpfunc }@
{% endfor %}
{% if options is defined -%}
{% if options -%}
.. raw:: html
<table>
......@@ -33,7 +33,7 @@
<tr>
<td>@{ k }@</td>
<td>@{ v.get('required',False) }@</td>
<td>@{ v['default'] }@</td>
<td>{% if v['default'] %}@{ v['default'] }@{% endif %}</td>
<td><ul>{% for choice in v.get('choices',[]) -%}<li>@{ choice }@</li>{% endfor -%}</ul></td>
<td>{% for desc in v.description -%}@{ desc | html_ify }@{% endfor -%}</td>
</tr>
......@@ -46,8 +46,17 @@
{% for example in examples %}
{% if example['description'] %}<p>@{ example['description'] | html_ify }@</p>{% endif %}
<p><pre>
@{ example['code'] }@</pre></p>
@{ example['code'] }@
</pre></p>
{% endfor %}
<br/>
{% if notes %}
.. raw:: html
<h4>Notes</h4>
{% for note in notes %}
<p>@{ note | html_ify }@</p>
{% endfor %}
{% endif %}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment