aboutsummaryrefslogtreecommitdiff
path: root/mdbook/proposals/book.toml
diff options
context:
space:
mode:
Diffstat (limited to 'mdbook/proposals/book.toml')
-rw-r--r--mdbook/proposals/book.toml12
1 files changed, 11 insertions, 1 deletions
diff --git a/mdbook/proposals/book.toml b/mdbook/proposals/book.toml
index fdbe64a..e466b1b 100644
--- a/mdbook/proposals/book.toml
+++ b/mdbook/proposals/book.toml
@@ -7,7 +7,7 @@ title = "Tor design proposals"
use-default-preprocessors = false
[build]
-build-dir = "../../html/proposals"
+build-dir = "../../build/proposals"
[preprocessor.links]
@@ -19,6 +19,16 @@ theme = "../theme"
# additional-js = ["theme/pagetoc.js"]
no-section-label = true
+[output.linkcheck]
+warning-policy = "error"
+# We effectively disable checking link destinations by excluding
+# all links (`.*`).
+#
+# We're only using linkcheck to validate that reference-style links have *some*
+# definition in the markdown, ensuring that *some* link will be generated. We
+# validate that those links are correct using a separate tool (`bin/check_links`)
+exclude = [ '.*' ]
+
[output.html.search]
enable = false