mirror of
https://github.com/anoma/juvix.git
synced 2024-12-04 17:07:28 +03:00
55 lines
1.7 KiB
TOML
55 lines
1.7 KiB
TOML
[book]
|
|
title = "The Juvix Book"
|
|
authors = [ "Jonathan Prieto-Cubides" , "Jan Mas Rovira" , "Paul Cadman" , "Lukasz Czajka" ]
|
|
language = "en"
|
|
multilingual = false
|
|
src = "docs/md/"
|
|
|
|
[build]
|
|
build-dir = "_docs"
|
|
create-missing = true
|
|
|
|
[output.html]
|
|
mathjax-support = true
|
|
|
|
[output.linkcheck]
|
|
# The User-Agent to use when sending web requests
|
|
user-agent = "mdbook-linkcheck-0.4.0"
|
|
# Should we check links on the internet? Enabling this option adds a
|
|
# non-negligible performance impact
|
|
follow-web-links = true
|
|
|
|
# Are we allowed to link to files outside of the book's root directory? This
|
|
# may help prevent linking to sensitive files (e.g. "../../../../etc/shadow")
|
|
traverse-parent-directories = false
|
|
|
|
# If necessary, you can exclude one or more links from being checked with a
|
|
# list of regular expressions. The regex will be applied to the link href (i.e.
|
|
# the `./index.html` in `[some page](./index.html)`) so it can be used to
|
|
# ignore both web and filesystem links.
|
|
#
|
|
# Hint: you can use TOML's raw strings (single quote) to avoid needing to
|
|
# escape things twice.
|
|
exclude = [ 'google\.com' ]
|
|
|
|
# The number of seconds a cached result is valid for (12 hrs by default)
|
|
cache-timeout = 43200
|
|
|
|
# How should warnings be treated?
|
|
#
|
|
# - "warn" will emit warning messages
|
|
# - "error" treats all warnings as errors, failing the linkcheck
|
|
# - "ignore" will ignore warnings, suppressing diagnostic messages and allowing
|
|
# the linkcheck to continuing
|
|
warning-policy = "warn"
|
|
|
|
# Extra HTTP headers that must be send to certain web sites
|
|
# in order to link check to succeed.
|
|
#
|
|
# This is a dictionary (map), with keys being regexes
|
|
# matching a set of web sites, and values being an
|
|
|
|
[preprocessor.toc]
|
|
command = "mdbook-toc"
|
|
renderer = ["html"]
|