-
Notifications
You must be signed in to change notification settings - Fork 1
/
mkdocs.yml
84 lines (75 loc) · 1.89 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
83
84
# project information
site_name: "Cookiecutter for KiCAD"
site_author: "Stephen Eaton"
site_description: "Cookiecutter Boilerplate for KiCAD Hardware projects"
# Page Tree
nav:
- Home: index.md
- Getting Started:
- getting-started/requirements.md
- getting-started/new-project.md
- getting-started/github.md
- getting-started/documentation.md
- getting-started/project-structure.md
- Contributing: contributing.md
- Authors: authors.md
- Change Log: changelog.md
- License: license.md
# Configuration
theme:
name: material
features:
- navigation.tabs
- navigation.indexes
- navigation.expand
- header.autohide
# Repository
repo_name: "madeinoz67/cookiecutter-kicad"
repo_url: "https://github.com/madeinoz67/cookiecutter-kicad"
edit_uri: ""
# plugins
plugins:
- search
- mermaid2
extra_javascript:
- https://unpkg.com/[email protected]/dist/mermaid.min.js
# extensions
markdown_extensions:
- abbr
- attr_list
- admonition
- footnotes
- meta
- pymdownx.details
- pymdownx.snippets
- pymdownx.smartsymbols
- pymdownx.caret
- pymdownx.mark
- pymdownx.tabbed
- pymdownx.tilde
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:mermaid2.fence_mermaid
- pymdownx.keys
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.arithmatex:
generic: true
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
# Copyright
copyright: Copyright © 2021 Stephen Eaton
# footer customisation
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/madeinoz67
- icon: fontawesome/brands/twitter
link: "https://twitter.com/madeinoz"
# Google Analytics
google_analytics:
- !!python/object/apply:os.getenv ["GOOGLE_ANALYTICS_KEY"]
- auto