« get me outta code hell

real initial commit PRETTY SNAZZY - wiki-blog - Unnamed repository; edit this file 'description' to name the repository.
summary refs log tree commit diff
path: root/pelicanconf.py
diff options
context:
space:
mode:
author(quasar) nebula <qznebula@protonmail.com>2025-04-28 18:04:45 -0300
committer(quasar) nebula <qznebula@protonmail.com>2025-04-28 18:04:45 -0300
commitf10f92353f7b87325de13af980224ae62f2960c5 (patch)
tree2b03ccc8f5d68c58c724adf21c83e024677414b7 /pelicanconf.py
parentc3284dc82fd40d9df00984093b8369bf26e15917 (diff)
real initial commit PRETTY SNAZZY HEAD main
Diffstat (limited to 'pelicanconf.py')
-rw-r--r--pelicanconf.py31
1 files changed, 31 insertions, 0 deletions
diff --git a/pelicanconf.py b/pelicanconf.py
new file mode 100644
index 0000000..f780c8a
--- /dev/null
+++ b/pelicanconf.py
@@ -0,0 +1,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",
+}