jaspervdj / patat

Terminal-based presentations using Pandoc
GNU General Public License v2.0
2.37k stars 60 forks source link

Allow configuring specific headers in theme #162

Open jaspervdj opened 5 months ago

jaspervdj commented 5 months ago

In addition to header, individual headers can now also be customized. The configuration blocks under headers accepts a style list, a prefix string and an underline string that is repeated match the width of the header.

For example:

patat:
  theme:
    headers:
      h3:
        style: [vividRed]
        prefix: '### '
        underline: '-~-~'

See #81