from pyexlatex.models.section.base import TextAreaMixin
from pyexlatex.models.item import SimpleItem
[docs]class Bold(TextAreaMixin, SimpleItem):
"""
Makes text bold.
"""
name = 'textbf'
[docs] def __init__(self, contents, **kwargs):
super().__init__(self.name, contents, **kwargs)