diff options
author | Linnea Gräf <nea@nea.moe> | 2024-01-29 11:44:46 +0100 |
---|---|---|
committer | Linnea Gräf <nea@nea.moe> | 2024-01-29 11:44:46 +0100 |
commit | fe8fa28e5649152c7b2f1f3cbcc5d830ff32f360 (patch) | |
tree | 793cc14cba27947faab60d369f4dd6a44c0646a5 /mkdocs.yml | |
parent | c331b3b1e73b12f2397ee0ede46ee695020f085c (diff) | |
download | moddevwiki-fe8fa28e5649152c7b2f1f3cbcc5d830ff32f360.tar.gz moddevwiki-fe8fa28e5649152c7b2f1f3cbcc5d830ff32f360.tar.bz2 moddevwiki-fe8fa28e5649152c7b2f1f3cbcc5d830ff32f360.zip |
Add remaining tutorials from my old PR
Diffstat (limited to 'mkdocs.yml')
-rw-r--r-- | mkdocs.yml | 58 |
1 files changed, 57 insertions, 1 deletions
@@ -1,4 +1,30 @@ site_name: Legacy Modding Wiki by nea89 +site_url: https://moddev.nea.moe/ +site_description: | + My wiki for 1.8.9 Forge modding beginners and experts alike. +repo_name: nea89o/ModDevWiki +repo_url: https://github.com/nea89o/ModDevWiki +edit_uri: blob/master/docs + + + +nav: + - index.md + - ide-setup.md + - events.md + - commands.md + - screens.md + - Mixins: + - mixins/index.md + - mixins/accessors.md + - mixins/adding-fields.md + - mixins/simple-injects.md + + +validation: + omitted_files: warn + absolute_links: warn + unrecognized_links: warn theme: name: material @@ -6,6 +32,36 @@ theme: - content.code.annotate - content.code.copy - content.tooltips + - navigation.top + - navigation.instant + - navigation.instant.prefetch + - navigation.instant.progress + - navigation.tracking + - navigation.indexes + - content.action.edit + icon: + repo: fontawesome/brands/git-alt + palette: + # Palette toggle for light mode + - media: "(prefers-color-scheme: light)" + scheme: default + toggle: + icon: material/weather-sunny + name: Switch to dark mode + + # Palette toggle for dark mode + - media: "(prefers-color-scheme: dark)" + scheme: slate + toggle: + icon: material/weather-night + name: Switch to light mode + + +plugins: + - git-revision-date-localized: + enable_creation_date: true + fallback_to_build_date: true + markdown_extensions: - abbr @@ -55,4 +111,4 @@ markdown_extensions: case: lower - pymdownx.tasklist: custom_checkbox: true - - pymdownx.tilde
\ No newline at end of file + - pymdownx.tilde |