-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
36 lines (36 loc) · 932 Bytes
/
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
site_name: My mkdocs template
site_url: http://127.0.0.1.nip.io/ # might be ignored... i removed it from the template
use_directory_urls: true
site_dir: ./public_html/
#nav:
# - index.md
# - "Foo"
# - foo/bar.md
theme:
name: readthedocs
custom_dir: theme-overrides
titles_only: true
extra_css:
- static/css/extra.css
extra_javascript:
- static/js/page.js
markdown_extensions:
- toc
- admonition
- fenced_code
- codehilite
- def_list
- wikilinks: { base_url: /_wiki/, html_class: btn btn-warning }
- meta
- attr_list
- pymdownx.extra # required for the begin_page, end_page - macros
- pymdownx.tilde
- pymdownx.superfences:
custom_fences:
- { name: plain, class: plain, format: !!python/name:custom_fences.plain }
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
plugins:
- search
- macros