blob: f780c8a72d187a74f12c88fbda9994605d8e8e44 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
AUTHOR = 'nebula'
SITENAME = "Nebula's Blog"
SITEURL = "https://nebula.hsmusic.wiki"
PATH = "content"
THEME = "theme/neb"
TIMEZONE = 'Canada/Atlantic'
DEFAULT_LANG = 'en'
DEFAULT_PAGINATION = 10
RELATIVE_URLS = True
MARKDOWN = {
"extension_configs": {
"markdown.extensions.attr_list": {},
"markdown.extensions.codehilite": {
"guess_lang": False,
},
"markdown.extensions.fenced_code": {},
"markdown.extensions.md_in_html": {},
"markdown.extensions.meta": {},
"markdown.extensions.toc": {
"title": "table of contents",
},
},
"output_format": "html5",
}
|