File: mkdocs.yml

package info (click to toggle)
mkdocs-literate-nav 0.6.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 468 kB
  • sloc: python: 421; makefile: 24; sh: 17
file content (51 lines) | stat: -rw-r--r-- 1,182 bytes parent folder | download
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
47
48
49
50
51
site_name: "mkdocs-literate-nav"
site_description: "MkDocs plugin to specify the navigation in Markdown instead of YAML"
site_url: "https://oprypin.github.io/mkdocs-literate-nav"
repo_url: "https://github.com/oprypin/mkdocs-literate-nav"
edit_uri: blob/master/docs/
use_directory_urls: false

theme:
  name: material
  features:
    - content.action.edit
    - navigation.tabs
    - toc.integrate
  icon:
    repo: fontawesome/brands/github
  palette:
    primary: teal
    accent: purple

markdown_extensions:
  - pymdownx.details
  - pymdownx.highlight
  - pymdownx.magiclink
  - pymdownx.saneheaders
  - pymdownx.superfences
  - pymdownx.snippets:
      check_paths: true
      base_path:
        - !relative $config_dir
  - callouts
  - admonition
  - md_in_html
  - toc:
      permalink: "#"

validation:
  omitted_files: warn
  absolute_links: warn
  unrecognized_links: warn
  nav:
    absolute_links: ignore

nav:
  - section-index: /mkdocs-section-index/
  - literate-nav:
    - Overview: README.md
    - Reference: reference.md
  - gen-files: /mkdocs-gen-files/
  - same-dir: /mkdocs-same-dir/
  - code-validator: /mkdocs-code-validator/
  - callouts: /markdown-callouts/