File tree Expand file tree Collapse file tree 3 files changed +30
-7
lines changed
{{cookiecutter.project_name}} Expand file tree Collapse file tree 3 files changed +30
-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
25
+
Original file line number Diff line number Diff line change 2
2
site_name : " {{cookiecutter.project_name}}"
3
3
theme :
4
4
name : material
5
- # palette:
6
- # scheme: slate
7
- # primary: cyan
5
+ palette :
6
+ # https://github.com/facelessuser/mkdocs_pymdownx_material_extras
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
+ - mermaid2 :
16
+ # https://mkdocs-mermaid2.readthedocs.io/en/latest/library
17
+ version : 10.9.0
18
+ - mkdocs_pymdownx_material_extras
19
+
20
+ markdown_extensions :
21
+ - pymdownx.superfences :
22
+ # make exceptions to highlighting of code
23
+ custom_fences :
24
+ # activate display of Mermaid diagrams
25
+ - name : mermaid
26
+ class : mermaid
27
+ # https://pypi.org/project/mkdocs-pymdownx-material-extras
28
+ # https://mkdocs-mermaid2.readthedocs.io/en/latest/superfences
29
+ format : !!python/name:pymdownx.superfences.fence_code_format
30
+
13
31
nav :
14
32
# - Home: home.md
15
33
- Index : index.md
16
34
- About : about.md
35
+
17
36
site_url : https://{{cookiecutter.github_org}}.github.io/{{cookiecutter.project_name}}
18
37
repo_url : https://github.com/{{cookiecutter.github_org}}/{{cookiecutter.project_name}}
19
38
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