Skip to content

Commit

Permalink
Updated Makefile to force mkdocs to a fixed version.
Browse files Browse the repository at this point in the history
This prevents numerous errors caused by significant changes in newer mkdocs versions.

Updated mkdocs/theme/base.html to use jquery-3.6.0.min.js as provided by mkdocs 1.5.3
  • Loading branch information
Yoann-Le-Borgne committed Sep 29, 2024
1 parent 097f9c8 commit 62c8eb0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ $(FAUSTDIR):

####################################################################
install:
pip install mkdocs
pip install mkdocs==1.5.3
pip install markdown-include
pip install mkdocs-bootswatch
pip install python-markdown-math
Expand Down
2 changes: 1 addition & 1 deletion mkdocs/theme/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@

{%- block libs %}

<script src="{{ 'js/jquery-1.10.2.min.js'|url }}" defer></script>
<script src="{{ 'js/jquery-3.6.0.min.js'|url }}" defer></script>
<script src="{{ 'js/bootstrap.min.js'|url }}" defer></script>
{%- if config.theme.highlightjs %}
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/highlight.min.js"></script>
Expand Down

0 comments on commit 62c8eb0

Please sign in to comment.