site_name: EllieBot docs
site_url: https://docs.elliebot.net
repo_url: 'https://toastielab.dev/EllieBotDevs/elliebot'
site_author: Toastie_t0ast
docs_dir: 'md'
theme:
  name: material
  palette:
    - media: "(prefers-color-scheme: light)"
      scheme: default
      primary: indigo
      accent: blue
      toggle:
        icon: material/weather-sunny
        name: Switch to dark mode
    - media: "(prefers-color-scheme: dark)"
      scheme: slate
      primary: black
      accent: blue
      toggle:
        icon: material/weather-night
        name: Switch to light mode
  features:
      - navigation.instant
      - navigation.expand
      - navigation.top
  font:
      text: Source Sans Pro
      code: Source Code Pro
  logo: assets/favicon.png
  favicon: assets/favicon.png
  icon:
    repo: material/git
extra:
  homepage: https://elliebot.net
plugins:
  - search
  - exclude:
      glob:
        - 'guides/vps-linux-guide.md'
        - 'snippets/supported-platforms.md'

markdown_extensions:
  - attr_list
  - codehilite:
      guess_lang: false
  - toc:
      permalink: true
  - pymdownx.betterem:
      smart_enable: all
  - admonition
  - pymdownx.inlinehilite
  - pymdownx.superfences
  - pymdownx.blocks.tab:
      alternate_style: true
  - pymdownx.snippets
  - pymdownx.details