Source code for pyexlatex.models.section.appendix

from pyexlatex.models.section.base import TextAreaBase
from pyexlatex.models.section.sections import Section


[docs]class Appendix(TextAreaBase): """ Content to be placed at the end, separate from the main document. """ name = 'appendices' next_level_down_class = Section
[docs] def __init__(self, contents): super().__init__(self.name, contents)