Files
ttrpg-site/config.json
Brian S. Stephan 48928cd7ae don't use markdown-grid-tables, formatting is poor
this extension is adding <p> tags when it shouldn't, and it's pretty
wordy anyway. unfortunately, not using it means that very long cells
have to be on one line, but maybe that's a sign the table is doing too
much work anyway
2026-02-20 01:27:46 -06:00

35 lines
782 B
JSON

{
"DOMAIN_NAME": "orb.moe",
"TITLE_SUFFIX": "The Orb",
"BASE_HOST": "https://orb.moe",
"CONTACT_EMAIL": "bss@orb.moe",
"AUTHOR": {
"name": "Brian S. Stephan",
"email": "bss@orb.moe"
},
"DEFAULT_PAGE_STYLE": "dungeon",
"PAGE_STYLES": {
"dungeon": "/static/css/dungeon.css",
"dark": "/static/css/dark.css",
"light": "/static/css/light.css",
"plain": "/static/css/plain.css"
},
"MARKDOWN_EXTENSIONS": [
"extra", "incorporealcms.mdx.figures", "incorporealcms.mdx.pydot",
"sane_lists", "smarty", "toc", "attr_list", "tables", "pymdownx.tilde", "md_in_html"
],
"MARKDOWN_EXTENSION_CONFIGS": {
"extra": {
"footnotes": {
"UNIQUE_IDS": true
}
},
"markdown_grid_tables": {
"hard_linebreaks": false
},
"toc": {
"toc_depth": "2-5"
}
}
}