Browse Source

HTML: SmallCaps

Jiří Kalvoda 2 months ago
parent
commit
089fa8b000
  1. 3
      src/formatitko/html_generator.py

3
src/formatitko/html_generator.py

@ -343,6 +343,9 @@ class HTMLGenerator(OutputGenerator):
def generate_DefinitionList(self, e: DefinitionList):
self.writeln("<!-- FIXME: DefinitionLists not implemented -->")
def generate_SmallCaps(self, e: SmallCaps):
self.generate_simple_tag(e, attributes=self.common_attributes(e) | {"style": "font-variant: small-caps;"})
class StandaloneHTMLGenerator(HTMLGenerator):

Loading…
Cancel
Save