-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathzensical.toml
More file actions
46 lines (41 loc) · 1.32 KB
/
zensical.toml
File metadata and controls
46 lines (41 loc) · 1.32 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# Zensical config for building the documentation
# Run: zensical serve (or zensical build)
[project]
site_name = "Markdown Macros"
site_description = "MkDocs-Macros–style Jinja2 templating for Python-Markdown"
site_url = "https://barcar.github.io/markdown-macros"
repo_url = "https://github.com/barcar/markdown-macros"
docs_dir = "docs"
site_dir = "site"
nav = [
{ "Home" = "index.md" },
{ "Live demo" = "demo.md" },
{ "Getting started" = [
{ "Installation" = "installation.md" },
{ "Configuration" = "configuration.md" },
]},
{ "User guide" = [
{ "Writing modules" = "writing-modules.md" },
{ "Usage" = "usage.md" },
]},
{ "Compatibility with MkDocs Macros" = "compatibility.md" },
{ "Troubleshooting" = "troubleshooting.md" },
{ "Changelog" = "changelog.md" },
{ "License" = "license.md" },
]
[project.theme]
variant = "modern"
# Markdown extensions
[project.markdown_extensions.markdown_macros]
module_name = "docs/demo_macros"
project_root = "."
include_yaml = ["docs/demo_vars.yaml"]
[project.markdown_extensions.markdown_macros.variables]
site_name = "Markdown Macros"
version = "0.5.0"
[project.markdown_extensions.admonition]
[project.markdown_extensions.pymdownx.superfences]
[project.markdown_extensions.pymdownx.highlight]
anchor_linenums = true
[project.markdown_extensions.toc]
permalink = true