Source code for pyexlatex.models.lists.unordered

from pyexlatex.models.lists.base import ListBase


[docs]class UnorderedList(ListBase): """ Bullet point items. """ name = 'itemize' is_ListBase = True # so that passing within lists will treat as a list