Configuration

You can configure the parameters for your book in the book.toml file.

Here is an example of what a book.toml file might look like:

  1. [book]
  2. title = "Example book"
  3. author = "John Doe"
  4. description = "The example book covers examples."
  5. [build]
  6. build-dir = "my-example-book"
  7. create-missing = false
  8. [preprocessor.index]
  9. [preprocessor.links]
  10. [output.html]
  11. additional-css = ["custom.css"]
  12. [output.html.search]
  13. limit-results = 15

Supported configuration options

It is important to note that any relative path specified in the configuration will always be taken relative from the root of the book where the configuration file is located.

General metadata

This is general information about your book.

  • title: The title of the book
  • authors: The author(s) of the book
  • description: A description for the book, which is added as meta information in the html <head> of each page
  • src: By default, the source directory is found in the directory named src directly under the root folder. But this is configurable with the src key in the configuration file.
  • language: The main language of the book, which is used as a language attribute <html lang="en"> for example.

book.toml

  1. [book]
  2. title = "Example book"
  3. authors = ["John Doe", "Jane Doe"]
  4. description = "The example book covers examples."
  5. src = "my-src" # the source files will be found in `root/my-src` instead of `root/src`
  6. language = "en"

Build options

This controls the build process of your book.

  • build-dir: The directory to put the rendered book in. By default this is book/ in the book’s root directory.

  • create-missing: By default, any missing files specified in SUMMARY.md will be created when the book is built (i.e. create-missing = true). If this is false then the build process will instead exit with an error if any files do not exist.

  • use-default-preprocessors: Disable the default preprocessors of (links & index) by setting this option to false.

    If you have the same, and/or other preprocessors declared via their table of configuration, they will run instead.

    • For clarity, with no preprocessor configuration, the default links and index will run.
    • Setting use-default-preprocessors = false will disable these default preprocessors from running.
    • Adding [preprocessor.links], for example, will ensure, regardless of use-default-preprocessors that links it will run.

Configuring Preprocessors

The following preprocessors are available and included by default:

  • links: Expand the {{ #playpen }}, {{ #include }}, and {{ #rustdoc_include }} handlebars helpers in a chapter to include the contents of a file.
  • index: Convert all chapter files named README.md into index.md. That is to say, all README.md would be rendered to an index file index.html in the rendered book.

book.toml

  1. [build]
  2. build-dir = "build"
  3. create-missing = false
  4. [preprocessor.links]
  5. [preprocessor.index]

Custom Preprocessor Configuration

Like renderers, preprocessor will need to be given its own table (e.g. [preprocessor.mathjax]). In the section, you may then pass extra configuration to the preprocessor by adding key-value pairs to the table.

For example

  1. [preprocessor.links]
  2. # set the renderers this preprocessor will run for
  3. renderers = ["html"]
  4. some_extra_feature = true

Locking a Preprocessor dependency to a renderer

You can explicitly specify that a preprocessor should run for a renderer by binding the two together.

  1. [preprocessor.mathjax]
  2. renderers = ["html"] # mathjax only makes sense with the HTML renderer

Provide Your Own Command

By default when you add a [preprocessor.foo] table to your book.toml file, mdbook will try to invoke the mdbook-foo executable. If you want to use a different program name or pass in command-line arguments, this behaviour can be overridden by adding a command field.

  1. [preprocessor.random]
  2. command = "python random.py"

Configuring Renderers

HTML renderer options

The HTML renderer has a couple of options as well. All the options for the renderer need to be specified under the TOML table [output.html].

The following configuration options are available:

  • theme: mdBook comes with a default theme and all the resource files needed for it. But if this option is set, mdBook will selectively overwrite the theme files with the ones found in the specified folder.
  • default-theme: The theme color scheme to select by default in the ‘Change Theme’ dropdown. Defaults to light.
  • preferred-dark-theme: The default dark theme. This theme will be used if the browser requests the dark version of the site via the ‘prefers-color-scheme’ CSS media query. Defaults to the same theme as default-theme.
  • curly-quotes: Convert straight quotes to curly quotes, except for those that occur in code blocks and code spans. Defaults to false.
  • mathjax-support: Adds support for MathJax. Defaults to false.
  • google-analytics: If you use Google Analytics, this option lets you enable it by simply specifying your ID in the configuration file.
  • additional-css: If you need to slightly change the appearance of your book without overwriting the whole style, you can specify a set of stylesheets that will be loaded after the default ones where you can surgically change the style.
  • additional-js: If you need to add some behaviour to your book without removing the current behaviour, you can specify a set of JavaScript files that will be loaded alongside the default one.
  • no-section-label: mdBook by defaults adds section label in table of contents column. For example, “1.”, “2.1”. Set this option to true to disable those labels. Defaults to false.
  • fold: A subtable for configuring sidebar section-folding behavior.
  • playpen: A subtable for configuring various playpen settings.
  • search: A subtable for configuring the in-browser search functionality. mdBook must be compiled with the search feature enabled (on by default).
  • git-repository-url: A url to the git repository for the book. If provided an icon link will be output in the menu bar of the book.
  • git-repository-icon: The FontAwesome icon class to use for the git repository link. Defaults to fa-github.

Available configuration options for the [output.html.fold] table:

  • enable: Enable section-folding. When off, all folds are open. Defaults to false.
  • level: The higher the more folded regions are open. When level is 0, all folds are closed. Defaults to 0.

Available configuration options for the [output.html.playpen] table:

  • editable: Allow editing the source code. Defaults to false.
  • copyable: Display the copy button on code snippets. Defaults to true.
  • copy-js: Copy JavaScript files for the editor to the output directory. Defaults to true.
  • line-numbers Display line numbers on editable sections of code. Requires both editable and copy-js to be true. Defaults to false.

Available configuration options for the [output.html.search] table:

  • enable: Enables the search feature. Defaults to true.
  • limit-results: The maximum number of search results. Defaults to 30.
  • teaser-word-count: The number of words used for a search result teaser. Defaults to 30.
  • use-boolean-and: Define the logical link between multiple search words. If true, all search words must appear in each result. Defaults to false.
  • boost-title: Boost factor for the search result score if a search word appears in the header. Defaults to 2.
  • boost-hierarchy: Boost factor for the search result score if a search word appears in the hierarchy. The hierarchy contains all titles of the parent documents and all parent headings. Defaults to 1.
  • boost-paragraph: Boost factor for the search result score if a search word appears in the text. Defaults to 1.
  • expand: True if search should match longer results e.g. search micro should match microwave. Defaults to true.
  • heading-split-level: Search results will link to a section of the document which contains the result. Documents are split into sections by headings this level or less. Defaults to 3. (### This is a level 3 heading)
  • copy-js: Copy JavaScript files for the search implementation to the output directory. Defaults to true.

This shows all available HTML output options in the book.toml:

  1. [book]
  2. title = "Example book"
  3. authors = ["John Doe", "Jane Doe"]
  4. description = "The example book covers examples."
  5. [output.html]
  6. theme = "my-theme"
  7. default-theme = "light"
  8. preferred-dark-theme = "navy"
  9. curly-quotes = true
  10. mathjax-support = false
  11. google-analytics = "123456"
  12. additional-css = ["custom.css", "custom2.css"]
  13. additional-js = ["custom.js"]
  14. no-section-label = false
  15. git-repository-url = "https://github.com/rust-lang/mdBook"
  16. git-repository-icon = "fa-github"
  17. [output.html.fold]
  18. enable = false
  19. level = 0
  20. [output.html.playpen]
  21. editable = false
  22. copy-js = true
  23. line-numbers = false
  24. [output.html.search]
  25. enable = true
  26. limit-results = 30
  27. teaser-word-count = 30
  28. use-boolean-and = true
  29. boost-title = 2
  30. boost-hierarchy = 1
  31. boost-paragraph = 1
  32. expand = true
  33. heading-split-level = 3
  34. copy-js = true

Markdown Renderer

The Markdown renderer will run preprocessors and then output the resulting Markdown. This is mostly useful for debugging preprocessors, especially in conjunction with mdbook test to see the Markdown that mdbook is passing to rustdoc.

The Markdown renderer is included with mdbook but disabled by default. Enable it by adding an emtpy table to your book.toml as follows:

  1. [output.markdown]

There are no configuration options for the Markdown renderer at this time; only whether it is enabled or disabled.

See the preprocessors documentation for how to specify which preprocessors should run before the Markdown renderer.

Custom Renderers

A custom renderer can be enabled by adding a [output.foo] table to your book.toml. Similar to preprocessors this will instruct mdbook to pass a representation of the book to mdbook-foo for rendering.

Custom renderers will have access to all configuration within their table (i.e. anything under [output.foo]), and the command to be invoked can be manually specified with the command field.

Environment Variables

All configuration values can be overridden from the command line by setting the corresponding environment variable. Because many operating systems restrict environment variables to be alphanumeric characters or _, the configuration key needs to be formatted slightly differently to the normal foo.bar.baz form.

Variables starting with MDBOOK_ are used for configuration. The key is created by removing the MDBOOK_ prefix and turning the resulting string into kebab-case. Double underscores (__) separate nested keys, while a single underscore (_) is replaced with a dash (-).

For example:

  • MDBOOK_foo -> foo
  • MDBOOK_FOO -> foo
  • MDBOOK_FOO__BAR -> foo.bar
  • MDBOOK_FOO_BAR -> foo-bar
  • MDBOOK_FOO_bar__baz -> foo-bar.baz

So by setting the MDBOOK_BOOK__TITLE environment variable you can override the book’s title without needing to touch your book.toml.

Note: To facilitate setting more complex config items, the value of an environment variable is first parsed as JSON, falling back to a string if the parse fails.

This means, if you so desired, you could override all book metadata when building the book with something like

  1. $ export MDBOOK_BOOK="{'title': 'My Awesome Book', authors: ['Michael-F-Bryan']}"
  2. $ mdbook build

The latter case may be useful in situations where mdbook is invoked from a script or CI, where it sometimes isn’t possible to update the book.toml before building.