Added ability to make epub files for character sheets (missing stats and spell list).

This commit is contained in:
Mark Wolfman
2021-07-07 22:32:20 -05:00
parent a31b9eb42c
commit 50754f7d5d
11 changed files with 248 additions and 93 deletions
@@ -0,0 +1,19 @@
<h1 id="magic-items">Magic Items</h1>
[% for mitem in character.magic_items %]
<h2 id="magic-items-[[ mitem.name | to_heading_id ]]">[[ mitem.name ]]</h2>
<dl>
<dt>Requires Attunement:</dt>
<dd>[[ mitem.requires_attunement ]]</dd>
<dt>Rarity:</dt>
<dd>[[ mitem.rarity ]]</dd>
</dl>
[% if mitem.needs_implementation %]
<p class="not-implemented">**Not included in stats on Character Sheet</p>
[% endif %]
[[ mitem.__doc__|rst_to_html ]]
[% endfor %]