mirror of
https://github.com/Threnklyn/dungeon-sheets.git
synced 2026-05-26 15:48:28 +02:00
20 lines
333 B
TeX
20 lines
333 B
TeX
[% for inf in character.infusions %]
|
|
|
|
\section*{[[ inf.name ]]}
|
|
|
|
[% if inf.prerequisite %]%
|
|
|
|
\noindent
|
|
\textit{Prerequisite: [[ inf.prerequisite ]]}%
|
|
|
|
[% endif %]%
|
|
[% if inf.item %]%
|
|
|
|
\noindent
|
|
\textit{Item: [[ inf.item ]]}%
|
|
|
|
[% endif %]%
|
|
|
|
[[ inf.__doc__ | rst_to_latex(top_heading_level=2) ]]
|
|
|
|
[% endfor %] |