Revision 10a462e325403864e915fb99b597de074f5ff904 authored by dqwu on 06 July 2023, 16:42:46 UTC, committed by dqwu on 07 December 2023, 20:11:16 UTC
1 parent 62e2587
Raw File
mkdocs.yaml
site_name: E3SM

nav:
  - Introduction: 'index.md'
  - Components: '*include ./components/*/mkdocs.yml'

theme:
  name: material
  palette:
  - media: "(prefers-color-scheme: light)"
    scheme: default
    toggle:
      icon: material/weather-sunny
      name: Switch to dark mode
  - media: "(prefers-color-scheme: dark)"
    scheme: slate
    toggle:
      icon: material/weather-night
      name: Switch to light mode
  features:
    - navigation.indices
    - navigation.instant
    - navigation.sections
    - navigation.top
#    - navigation.tabs

markdown_extensions:
  - footnotes
  - pymdownx.highlight
  - pymdownx.superfences
  - pymdownx.tabbed:
      alternate_style: true
  - pymdownx.arithmatex:
      generic: true
  - md_in_html

plugins:
  - monorepo
  - bibtex:
      bib_file: components/elm/docs/refs.bib

extra_javascript:
  - javascript/mathjax.js
  - https://polyfill.io/v3/polyfill.min.js?features=es6
  - https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
back to top