default light theme
color_bg_light = 'eefbfe'
color_bg_code_light = 'eefbfe'
color_text_light = '1f2022'
color_link_light = '47cbff'
color_accent_light = 'ffeb00'
overlay_brightness_light = '.95'
All New auto_description plugin
- Cache is busted on plugin change
- plugin is configurable
- plugin now has docs
auto_description Configuration
Open up your `markata.toml` file and add new entries for your
auto_descriptions. You can have multiple desriptions, each one will be named
after the key you give it in your config.
toml
[markata]
hooks=[
"markata.plugins.auto_description",
]
[markata.auto_description.description]
len=160
[markata.auto_description.long_description]
len=250
[markata.auto_description.super_description]
len=500
In the above we will end up with three different descritpions,
(`description`, `long_description`, and `super_description`) each will be the
first number of characters from the document as specified in the config.
auto_descriptions are no longer duplicated
4e299d6 fixes the dedupe issue that was in develop for a while and closes 24