Skip to content

Commit

Permalink
feat(mkdocs): Add new features and markdown extensions
Browse files Browse the repository at this point in the history
This commit enhances the configuration of the MkDocs site by adding new
features and markdown extensions:
- Added features to the material theme for navigation and code copying
- Included pymdownx.highlight with anchor line numbers
- Added pymdownx.superfences and pymdownx.inlinehilite for improved formatting and highlighting

These changes were made to improve the overall user experience and provide
additional functionalities for better navigation and code display on the site.
  • Loading branch information
AdaiasMagdiel committed Mar 13, 2024
1 parent d21165f commit 2a5899b
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions mkdocs/mkdocs.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
site_name: Deta Clojure API
theme:
name: material
features:
- navigation.sections
- navigation.path
- content.code.copy
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.superfences
- pymdownx.inlinehilite

0 comments on commit 2a5899b

Please sign in to comment.