Merge pull request #1157 from jpmens/rst01

module docs: fixed rst template
This commit is contained in:
Michael DeHaan
2012-09-30 05:00:07 -07:00

View File

@@ -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 %}