Skip to content

Commit

Permalink
add mkdocs config
Browse files Browse the repository at this point in the history
  • Loading branch information
JR-1991 committed Dec 17, 2024
1 parent 7c71cc9 commit 0f872a4
Showing 1 changed file with 64 additions and 0 deletions.
64 changes: 64 additions & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
site_name: Analytical Model Markup Language
repo_url: https://github.com/FAIRChemistry/animl-specification
edit_uri: edit/main/docs/

theme:
font:
text: Open Sans
icon:
repo: fontawesome/brands/github
edit: material/pencil
view: material/eye
name: material
features:
- navigation.tabs
- navigation.sections
- navigation.path
- navigation.top
- navigation.tracking
- toc.follow
- search.suggest
- content.action.edit
- content.code.copy
palette:
- media: "(prefers-color-scheme: light)"
primary: custom
accent: custom
scheme: custom
toggle:
icon: material/weather-sunny
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
primary: custom
accent: custom
scheme: slate
toggle:
icon: material/weather-night
name: Switch to light mode
nav:
- "Model Reference": model.md

markdown_extensions:
- attr_list
- admonition
- pymdownx.details
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.critic
- pymdownx.caret
- pymdownx.keys
- pymdownx.mark
- pymdownx.tilde
- toc:
permalink: true
plugins:
- search

extra_css:
- stylesheets/extra.css

0 comments on commit 0f872a4

Please sign in to comment.