forked from cswimr/SeaCogs
feat(docs): updated docs with the version of documentation on the updatechecker branch
This commit is contained in:
parent
860eccb52a
commit
712484986c
1 changed files with 30 additions and 4 deletions
34
mkdocs.yml
34
mkdocs.yml
|
@ -1,8 +1,8 @@
|
|||
site_name: SeaCogs Documentation
|
||||
site_url: https://seacogs.coastalcommits.com
|
||||
site_url: !ENV [SITE_URL, 'https://seacogs.coastalcommits.com']
|
||||
repo_name: CoastalCommits
|
||||
repo_url: https://coastalcommits.com/SeaswimmerTheFsh/SeaCogs
|
||||
edit_uri: src/branch/main/.docs
|
||||
edit_uri: !ENV [EDIT_URI, 'src/branch/main/.docs']
|
||||
copyright: Copyright © 2024, SeaswimmerTheFsh
|
||||
docs_dir: .docs
|
||||
|
||||
|
@ -12,11 +12,12 @@ site_description: Documentation for my Red-DiscordBot Cogs.
|
|||
nav:
|
||||
- Home: index.md
|
||||
- Aurora:
|
||||
- Home: aurora/index.md
|
||||
- aurora/index.md
|
||||
- Moderation Commands: aurora/moderation-commands.md
|
||||
- Case Commands: aurora/case-commands.md
|
||||
- Configuration: aurora/configuration.md
|
||||
- Nerdify: nerdify.md
|
||||
- UpdateChecker: updatechecker.md
|
||||
|
||||
plugins:
|
||||
- git-authors
|
||||
|
@ -62,19 +63,44 @@ markdown_extensions:
|
|||
|
||||
theme:
|
||||
name: material
|
||||
custom_dir: ./.docs/.overrides
|
||||
palette:
|
||||
scheme: slate
|
||||
- media: '(prefers-color-scheme: light)'
|
||||
scheme: default
|
||||
primary: cyan
|
||||
accent: light blue
|
||||
toggle:
|
||||
icon: material/toggle-switch
|
||||
name: Switch to dark mode
|
||||
|
||||
- media: '(prefers-color-scheme: dark)'
|
||||
scheme: slate
|
||||
primary: cyan
|
||||
accent: light blue
|
||||
toggle:
|
||||
icon: material/toggle-switch-off-outline
|
||||
name: Switch to light mode
|
||||
features:
|
||||
- announce.dismiss
|
||||
- content.code.annotate
|
||||
- content.code.copy
|
||||
- navigation.instant
|
||||
- navigation.instant.progress
|
||||
- navigation.tabs
|
||||
- navigation.tracking
|
||||
- navigation.top
|
||||
- navigation.sections
|
||||
- navigation.indexes
|
||||
- search.suggest
|
||||
- search.highlight
|
||||
- search.share
|
||||
- toc.follow
|
||||
logo: img/logo.png
|
||||
favicon: img/logo.png
|
||||
icon:
|
||||
repo: simple/forgejo
|
||||
|
||||
watch:
|
||||
- ./aurora
|
||||
- ./nerdify
|
||||
- ./updatechecker
|
||||
|
|
Loading…
Reference in a new issue