refreshless-8.x-1.x-dev/mkdocs.yml
mkdocs.yml
site_name: 'RefreshLess'
repo_url: https://git.drupalcode.org/project/refreshless
repo_name: drupal/refreshless
theme:
name: material
logo: assets/logo.svg
favicon: assets/logo.svg
palette:
# Palette toggle for automatic mode
- media: "(prefers-color-scheme)"
primary: custom
accent: custom
toggle:
icon: material/brightness-auto
name: Switch to light mode
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
primary: custom
accent: custom
scheme: default
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
primary: custom
accent: custom
scheme: slate
toggle:
icon: material/brightness-4
name: Switch to system preference
features:
# @see https://squidfunk.github.io/mkdocs-material/setup/setting-up-navigation/#section-index-pages
- navigation.indexes
extra_css:
- stylesheets/colours.css
- stylesheets/links.css
markdown_extensions:
- def_list
- pymdownx.highlight:
use_pygments: true
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
nav:
- Home: 'index.md'
- User guide:
- 'user/index.md'
- Requirements: 'user/requirements.md'
- Installing: 'user/install.md'
- Integrating:
- 'integrating/index.md'
- Behaviours: 'integrating/behaviours.md'
- Caching: 'integrating/caching.md'
- Events: 'integrating/events.md'
- Preloading links: 'integrating/preloading-links.md'
- Page transitions: 'integrating/page-transitions.md'
- API: 'integrating/api.md'
- Developing:
- 'developing/index.md'
- Local development: 'developing/local.md'
- Front-end libraries: 'developing/libraries.md'
- Drupal core patches: 'developing/core-patches.md'
- Turbo patches: 'developing/turbo-patches.md'
- Testing: 'developing/testing.md'
- Known issues: 'developing/known-issues.md'
- About:
- 'about/index.md'
- Motivation: 'about/motivation.md'
- Questions and answers: 'about/questions.md'
- Contact: 'about/contact.md'
plugins:
- search
- privacy:
enabled: !ENV [CI, false]
