mkdocs.yml: add
This commit is contained in:
parent
2b9efda6ad
commit
27172c6ab2
1 changed files with 76 additions and 0 deletions
76
mkdocs.yml
Normal file
76
mkdocs.yml
Normal file
|
@ -0,0 +1,76 @@
|
|||
site_name: Blog
|
||||
site_url: https://blog.lucbijl.nl
|
||||
copyright: "© 2025 Luc Bijl - This work is licensed under the CC-BY-NC-SA-4.0 license."
|
||||
|
||||
repo_name: luc/blog
|
||||
repo_url: https://git.lucbijl.nl/luc/blog
|
||||
|
||||
extra:
|
||||
generator: false
|
||||
|
||||
theme:
|
||||
name: material
|
||||
features:
|
||||
- navigation.instant
|
||||
- navigation.instant.progress
|
||||
- navigation.indexes
|
||||
- navigation.sections
|
||||
- toc.follow
|
||||
- search.suggest
|
||||
- search.highlight
|
||||
- search.share
|
||||
- content.tabs.link
|
||||
- content.code.copy
|
||||
- content.code.annotate
|
||||
#logo: assets/lucbijl-logo.png
|
||||
#favicon: assets/lucbijl-logo.png
|
||||
palette:
|
||||
- media: "(prefers-color-scheme: light)"
|
||||
scheme: default
|
||||
primary: white
|
||||
accent: blue
|
||||
toggle:
|
||||
icon: material/brightness-7
|
||||
name: Switch to dark mode
|
||||
- media: "(prefers-color-scheme: dark)"
|
||||
scheme: slate
|
||||
primary: black
|
||||
accent: teal
|
||||
toggle:
|
||||
icon: material/brightness-3
|
||||
name: Switch to light mode
|
||||
|
||||
markdown_extensions:
|
||||
- admonition
|
||||
- attr_list
|
||||
- md_in_html
|
||||
- pymdownx.arithmatex:
|
||||
generic: true
|
||||
- pymdownx.details
|
||||
- pymdownx.superfences
|
||||
- pymdownx.tabbed:
|
||||
alternate_style: true
|
||||
- pymdownx.highlight:
|
||||
anchor_linenums: true
|
||||
line_spans: __span
|
||||
pygments_lang_class: true
|
||||
- pymdownx.inlinehilite
|
||||
- pymdownx.snippets
|
||||
|
||||
plugins:
|
||||
- search
|
||||
- tags
|
||||
- blog:
|
||||
blog_dir: .
|
||||
|
||||
extra_javascript:
|
||||
- javascripts/katex.js
|
||||
- https://unpkg.com/katex@0/dist/katex.min.js
|
||||
- https://unpkg.com/katex@0/dist/contrib/auto-render.min.js
|
||||
|
||||
extra_css:
|
||||
- stylesheets/extra.css
|
||||
- https://unpkg.com/katex@0/dist/katex.min.css
|
||||
|
||||
nav:
|
||||
- index.md
|
Loading…
Add table
Add a link
Reference in a new issue