Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ jobs:
${{ runner.os }}-pip-
- run: |
python3 -m pip install -r requirements.txt
mkdocs build
mkdocs build --strict
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
run: python3 -m pip install -r ./requirements.txt

- name: Build Docs
run: mkdocs build
run: mkdocs build --strict

- name: Deploy
uses: peaceiris/actions-gh-pages@v4
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
.venv
site/
15 changes: 13 additions & 2 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,8 @@ theme:
- navigation.top
- navigation.tracking
- navigation.instant
- navigation.instant.prefetch
- navigation.instant.progress
- toc.follow
- search.suggest
- search.highlight
Expand All @@ -130,6 +132,7 @@ extra_css:
- stylesheets/github-permalink-style.css

plugins:
- search
- glightbox:
touchNavigation: true
loop: false
Expand All @@ -140,7 +143,12 @@ plugins:
draggable: true
auto_caption: false
caption_position: bottom
- search
- minify:
minify_html: true
minify_js: true
minify_css: true
htmlmin_opts:
remove_comments: true

markdown_extensions:
- attr_list
Expand All @@ -150,10 +158,13 @@ markdown_extensions:
- admonition
- pymdownx.details
- pymdownx.superfences
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- tables
- pymdownx.tabbed:
alternate_style: true
- md_in_html
- toc:
toc_depth: 4
permalink: ''
permalink: true
Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Unless there was a reason?

1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ mkdocs~=1.6.0
mkdocs-material~=9.7.1
mkdocs-material-extensions~=1.3.0
mkdocs-glightbox~=0.5.0
mkdocs-minify-plugin~=0.8.0