-
Notifications
You must be signed in to change notification settings - Fork 3
/
mkdocs.yml
82 lines (72 loc) · 1.96 KB
/
mkdocs.yml
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
# inspired from https://github.com/avik-pal/Lux.jl/blob/main/docs/mkdocs.yml
theme:
name: material
features:
- navigation.sections
palette:
- scheme: default
primary: white
accent: amber
toggle:
icon: material/weather-night
name: Switch to dark mode
- scheme: slate
primary: black
accent: amber
toggle:
icon: material/weather-sunny
name: Switch to light mode
font:
text: Lato
icon:
repo: fontawesome/brands/github
custom_dir: "docs/_overrides/" # Overriding part of the HTML
# TODO: look into this
# twitter_name: "@saranshchopra7"
# twitter_url: "https://twitter.com/saranshchopra7"
site_name: OCRed
site_description: Documentation for OCRed
site_author: Saransh Chopra
site_url: https://ocred.readthedocs.io/
repo_url: https://github.com/Saransh-cpp/OCRed
repo_name: Saransh-cpp/OCRed
edit_uri: ./edit/main/docs
extra_css:
- stylesheets/extra.css
strict: true
plugins:
- search
- mkdocstrings
- autorefs # Cross-links to headings
- include_exclude_files:
exclude:
- "_overrides"
markdown_extensions:
- callouts
- pymdownx.arithmatex
- pymdownx.magiclink
- pymdownx.details # Allowing hidden expandable regions denoted by ???
- pymdownx.highlight
- pymdownx.inlinehilite
- pymdownx.superfences # Seems to enable syntax highlighting when used with the Material theme.
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tabbed:
alternate_style: true
- pymdownx.snippets:
check_paths: true
- toc:
permalink: "¤" # Adds a clickable permalink to each section heading
toc_depth: 4
extra_javascript:
- mathjax-config.js
- https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML
docs_dir: docs
nav:
- Home: "index.md"
- Installation: "install.md"
# - Examples:
- Reference: "reference.md"
- Contributing: "contributing.md"
- Changelog: "changelog.md"
- Code of Conduct: "conduct.md"