Some checks failed
Build and publish CMBA rulebooks (Gitea) / build-release (push) Failing after 49s
48 lines
839 B
YAML
48 lines
839 B
YAML
site_name: CMBA Rulebook
|
|
docs_dir: ..
|
|
site_dir: ./dist
|
|
|
|
# Prevent accidental publishing of repo/CI/dev clutter
|
|
exclude_docs: |
|
|
.github/
|
|
.git/
|
|
.venv/
|
|
venv/
|
|
"*.sh"
|
|
"*.py"
|
|
"*.yml"
|
|
"*.yaml"
|
|
"README.md"
|
|
theme:
|
|
name: material
|
|
palette:
|
|
scheme: default
|
|
primary: blue
|
|
accent: red
|
|
logo: ../assets/cmba-logo.svg
|
|
favicon: ../assets/favicon.png
|
|
features:
|
|
- navigation.instant
|
|
- navigation.tracking
|
|
- navigation.top
|
|
- toc.integrate
|
|
- search.highlight
|
|
- search.suggest
|
|
extra_css:
|
|
- mkdocs/styles/extra.css
|
|
markdown_extensions:
|
|
- toc:
|
|
permalink: true
|
|
- admonition:
|
|
# - tables
|
|
nav:
|
|
- Home: mkdocs/index.md
|
|
- Constitution: cmba-constitution.md
|
|
- Bylaws: cmba-bylaws.md
|
|
|
|
plugins:
|
|
- search
|
|
- enumerate-headings:
|
|
toc_depth: 2
|
|
exclude:
|
|
- mkdocs/index.md |