forked from space-wizards/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
book.toml
85 lines (74 loc) · 4.91 KB
/
book.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
[book]
authors = ["Space Wizards Contributors"]
language = "en"
multilingual = false
src = "src"
title = "Space Wizards Development Wiki"
description = "Tutorial & reference for all Space Wizards Federation projects, including the Robust Toolbox engine and its flagship open source game, Space Station 14."
[preprocessor.mermaid]
[preprocessor.admonish]
assets_version = "2.0.2" # do not edit: managed by `mdbook-admonish install`
[preprocessor.template]
before = ["mermaid", "admonish"] # templates can include these so we run this first
[output.html]
additional-js = ['scripts/mermaid.min.js', 'scripts/mermaid-init.js', 'scripts/nav-additions.js']
additional-css = ['theme/mdbook-admonish.css', 'theme/ss14.css', 'theme/nav-style.css']
default-theme = "navy"
preferred-dark-theme = "navy"
git-repository-url = "https://github.com/space-wizards/space-station-14"
edit-url-template = "https://github.com/space-wizards/docs/blob/master/{path}"
site-url = "/docs/" # remove when we move to docs.ss14.io -- needed for 404 pages to render properly in subdirectories
mathjax-support = true
curly-quotes = true
no-section-label = true
[output.html.print]
enable = false
[output.html.fold]
enable = true
level = 1
[output.html.playground]
runnable = false # sorry we arent rustpilled :(
[output.linkcheck]
traverse-parent-directories = false
warning-policy = "ignore" # false-positives like hell with absolute links & latex, so.. cant do
# Redirects
# These are used to map between old Wiki.js links and current docs site links,
# so we can avoid the hell that was dead links with the old hackmd transfer.
# Wiki.js doesn't have `.html` endings on files, so we hack it by putting /index.html
# and just letting the browser look there, then get redirected
[output.html.redirect]
"/en/getting-started/how-do-i-code/index.html" = "en/general-development/setup/howdoicode.html"
"/en/getting-started/dev-setup/index.html" = "en/general-development/setup/setting-up-a-development-environment.html"
"/en/getting-started/git/index.html" = "en/general-development/setup/git-for-the-ss14-developer.html"
"/en/content/yaml/index.html" = "en/general-development/tips/yaml-crash-course.html"
"/en/getting-started/pr-guideline/index.html" = "en/general-development/codebase-info/pull-request-guidelines.html"
"/en/getting-started/conventions/index.html" = "/en/general-development/codebase-info/conventions.html"
"/en/content/chemistry/index.html" = "/en/space-station-14/chemistry.html"
"/en/content/writing-guidebook-entries/index.html" = "/en/general-development/tips/writing-guidebook-entries.html"
"/en/content/device-network/index.html" = "/en/space-station-14/device-network.html"
"/en/content/pow3r/index.html" = "/en/spcae-station-14/pow3r.html"
# yes this one is correct
"/en/content/construction/index/index.html" = "/en/space-station-14/construction.html"
"/en/content/destructible/index.html" = "/en/space-station-14/destructible.html"
"/en/administration/commands/index.html" = "/en/community/admin/admin-tooling/admin-command-cookbook.html"
"/en/administration/tooling/index.html" = "/en/community/admin/admin-tooling.html"
"/en/administration/policy/index.html" = "/en/community/admin/wizards-den-admin-policy.html"
"/en/administration/banning-policy/index.html" = "/en/community/admin/wizards-den-banning-policy.html"
"/en/getting-started/hosting/index.html" = "/en/general-development/setup/server-hosting-tutorial.html"
"/en/hosting/replays/index.html" = "/en/server-hosting/server-replay-recording.html"
"/en/hosting/changelogs/index.html" = "/en/server-hosting/setting-up-ss14-changelog.html"
"/en/hosting/SS14-Admin/index.html" = "/en/server-hosting/setting-up-ss14-admin.html"
"/en/hosting/robust-cdn/index.html" = "/en/server-hosting/setting-up-robust-cdn.html"
"/en/technical-docs/acronyms-and-nomenclature/index.html" = "/en/general-development/codebase-info/acronyms-and-nomenclature.html"
"/en/getting-started/engine-changes/index.html" = "/en/general-developmnet/codebase-info/prs-with-engine-changes.html"
"/en/getting-started/debugging-tools/index.html" = "/en/general-development/tips/debugging-tools.html"
"/en/getting-started/troubleshooting/index.html" = "/en/general-development/tips/troubleshooting-faq.html"
"/en/config-reference/index.html" = "/en/general-development/tips/config-file-reference.html"
"/en/technical-docs/codebase-organization/index.html" = "/en/general-development/codebase-info/codebase-organization.html"
"/en/content/mapping/index.html" = "/en/space-station-14/mapping.html"
"/en/content/mapping-sins/index.html" = "/en/space-station-14/mapping/mapping-sins.html"
"/en/content/mapping-checklist/index.html" = "/en/space-station-14/mapping/mapping-checklist.html"
"/en/content/dungeons/index.html" = "/en/space-station-14/dungeons.html"
"/en/content/node-networks/index.html" = "/en/space-station-14/node-networks.html"
"/en/content/NPCs/index.html" = "/en/space-station-14/npcs.html"
"/en/content/cartridge-loader/index.html" = "/en/space-station-14/cartridge-loaders.html"