Split FAQ into own page. Some minor tweaks.
This commit is contained in:
parent
8f4c645b92
commit
88283db912
4 changed files with 10 additions and 5 deletions
3
tbmm-docs/docs/FAQ.md
Normal file
3
tbmm-docs/docs/FAQ.md
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
# Frequently Asked Questions
|
||||||
|
|
||||||
|
[The FAQ is hosted on the repository.](https://github.com/Stephen-Seo/TurnBasedMinecraftMod/blob/neoforge/FAQ.md)
|
|
@ -9,3 +9,5 @@
|
||||||
[Client-side config](client_config.md)
|
[Client-side config](client_config.md)
|
||||||
|
|
||||||
[Server-side config](server_config.md)
|
[Server-side config](server_config.md)
|
||||||
|
|
||||||
|
[Frequently Asked Questions](FAQ.md)
|
||||||
|
|
|
@ -98,7 +98,3 @@ defaults. This is due to new mob entries in the settings. Check the
|
||||||
`.minecraft/config` folder (or `config` folder on the server) to see that the
|
`.minecraft/config` folder (or `config` folder on the server) to see that the
|
||||||
old settings file was renamed and the new settings file is in its place. You may
|
old settings file was renamed and the new settings file is in its place. You may
|
||||||
have to compare the files to keep the settings you want.
|
have to compare the files to keep the settings you want.
|
||||||
|
|
||||||
## Frequently Asked Questions
|
|
||||||
|
|
||||||
[FAQ](https://github.com/Stephen-Seo/TurnBasedMinecraftMod/blob/neoforge/FAQ.md)
|
|
||||||
|
|
|
@ -1,7 +1,11 @@
|
||||||
site_name: Documentation for TurnBasedMinecraftMod
|
site_name: Docs for TurnBasedMinecraftMod
|
||||||
theme:
|
theme:
|
||||||
name: mkdocs
|
name: mkdocs
|
||||||
color_mode: dark
|
color_mode: dark
|
||||||
user_color_mode_toggle: true
|
user_color_mode_toggle: true
|
||||||
markdown_extensions:
|
markdown_extensions:
|
||||||
- admonition
|
- admonition
|
||||||
|
nav:
|
||||||
|
- Client-Side Config: client_config.md
|
||||||
|
- Server-Side Config: server_config.md
|
||||||
|
- Frequently Asked Questions: FAQ.md
|
||||||
|
|
Loading…
Reference in a new issue