File tree Expand file tree Collapse file tree 4 files changed +1855
-7
lines changed
{{cookiecutter.project_name}} Expand file tree Collapse file tree 4 files changed +1855
-7
lines changed Original file line number Diff line number Diff line change 20
20
uses : actions/checkout@v3
21
21
- name : Codespell
22
22
uses : codespell-project/actions-codespell@v2
23
+ with :
24
+ skip : *.js
Original file line number Diff line number Diff line change 1
1
---
2
2
site_name : " {{cookiecutter.project_name}}"
3
+ docs_dir : docs
3
4
theme :
4
5
name : material
5
- # palette:
6
- # scheme: slate
7
- # primary: cyan
6
+ palette :
7
+ scheme : dracula
8
+ primary : deep purple
9
+ accent : deep purple
8
10
features :
9
11
- content.tabs.link
12
+
10
13
plugins :
11
14
- search
12
- - mermaid2
15
+ - mkdocs_pymdownx_material_extras
16
+ - mermaid2 :
17
+ # prevent mkdocs-mermaid2-plugin from pulling (a version) from internet
18
+ # which does not work in sandboxed environment anyway
19
+ version : 10.8.0
20
+ javascript : ./js/mermaid.min.js
21
+
22
+ markdown_extensions :
23
+ - pymdownx.superfences :
24
+ # make exceptions to highlighting of code
25
+ custom_fences :
26
+ # activate display of Mermaid diagrams
27
+ - name : mermaid
28
+ class : mermaid
29
+ # https://pypi.org/project/mkdocs-pymdownx-material-extras
30
+ # https://mkdocs-mermaid2.readthedocs.io/en/latest/superfences
31
+ format : !!python/name:pymdownx.superfences.fence_code_format
32
+
13
33
nav :
14
34
# - Home: home.md
15
35
- Index : index.md
16
36
- About : about.md
37
+
17
38
site_url : https://{{cookiecutter.github_org}}.github.io/{{cookiecutter.project_name}}
18
39
repo_url : https://github.com/{{cookiecutter.github_org}}/{{cookiecutter.project_name}}
19
40
Original file line number Diff line number Diff line change @@ -18,13 +18,14 @@ style = "pep440"
18
18
19
19
[tool .poetry .dev-dependencies ]
20
20
linkml = " ^1.3.5"
21
- mkdocs-material = " ^8.2.8"
22
- mkdocs-mermaid2-plugin = " ^0.6.0"
21
+ mkdocs-material = " ^9.5.11"
22
+ mkdocs-mermaid2-plugin = " ^1.1.1"
23
+ mkdocs-pymdownx-material-extras = " ^2.5.6"
23
24
schemasheets = " ^0.1.14"
24
25
25
26
[build-system ]
26
27
requires = [" poetry-core>=1.0.0" , " poetry-dynamic-versioning" ]
27
28
build-backend = " poetry_dynamic_versioning.backend"
28
29
29
30
[tool .poetry .extras ]
30
- docs = [" linkml" , " mkdocs-material" ]
31
+ docs = [" linkml" , " mkdocs-material" ]
You can’t perform that action at this time.
0 commit comments