bug fixes to mkdocs, added download button capability (#895)

Co-authored-by: omri374 <omri.mendels@microsoft.com>
This commit is contained in:
Omri Mendels
2022-07-13 14:16:27 +03:00
committed by GitHub
parent 871eceefd6
commit d6b9c63e85
2 changed files with 15 additions and 2 deletions

View File

@@ -24,6 +24,7 @@ nav:
- Simple anonymization: tutorial/10_simple_anonymization.md
- Custom anonymization: tutorial/11_custom_anonymization.md
- Encryption/Decryption: tutorial/12_encryption.md
- Allow-lists: tutorial/13_allow_list.md
- Docs:
- Installation: installation.md
- Handling text:
@@ -75,8 +76,9 @@ theme:
plugins:
- search
- mkdocstrings
- mkdocs-jupyter
- mkdocs-jupyter:
include_source: True
include: ["*.ipynb"]
extra:
social:

View File

@@ -9,3 +9,14 @@
})(window, document, "clarity", "script", "5pd40fk720");
</script>
{% endblock %}
{% block content %}
{% if page.nb_url %}
<a href="{{ page.nb_url }}" title="Download Notebook" class="md-content__button md-icon">
{% include ".icons/material/download.svg" %}Download
</a><br>
{% endif %}
{{ super() }}
{% endblock content %}