8 releases (4 breaking)

0.5.1 Jul 10, 2022
0.5.0 Jan 7, 2022
0.4.2 Dec 29, 2021
0.4.1 Nov 5, 2021
0.1.0 Feb 27, 2020

#573 in Template engine

Download history 8/week @ 2024-11-16 5/week @ 2024-11-23 6/week @ 2024-12-07 1/week @ 2024-12-14 6/week @ 2025-01-25 15/week @ 2025-02-01 7/week @ 2025-02-08 10/week @ 2025-02-15 47/week @ 2025-02-22 46/week @ 2025-03-01

111 downloads per month

MIT license

15KB
286 lines

Build Status Crate Docs

mdbook-tera

Tera preprocessor for mdBook
API documentation hosted on docs.rs.

$ mdbook-tera --help
mdbook-tera 0.5.1
A mdBook preprocessor that renders Tera

USAGE:
    mdbook-tera [OPTIONS] [SUBCOMMAND]

OPTIONS:
    -h, --help                       Print help information
        --json <FILE>                Sets context from JSON file
        --template-include <GLOB>    Include tera templates matching a glob expression [default:
                                     **/*.tera]
        --template-root <PATH>       Root directory to include templates from [default: ./src]
        --toml <FILE>                Sets context from TOML file
    -V, --version                    Print version information

SUBCOMMANDS:
    help        Print this message or the help of the given subcommand(s)
    supports    Check whether a renderer is supported by this preprocessor

Usage

First install the tera preprocessor.

cargo install mdbook-tera

Then in your book.toml file, add the tera preprocessor as below.

Default Configuration

# Default options, load a TOML context file from ./src/context.toml
[preprocessor.tera]

JSON Configuration

[preprocessor.tera]
command = "mdbook-tera --json ./src/context.json"

Usage in Markdown files

See example-book for a basic usage.

Simply define your values in the context.toml file, and use them in tera statements. You can access the book context with the key ctx.

# My Heading

{{ my_value }}

Dependencies

~16–27MB
~425K SLoC