mdbook/tests/testsuite/preprocessor/extension_compatibility/book.toml
Eric Huss 5eaae38bf4 Add a test for extension compatibility
This adds a test to ensure that the interface for preprocessors and
renderers does not change unexpectedly, particularly in a semver
compatible release.

Closes https://github.com/rust-lang/mdBook/issues/1574
2025-08-29 18:40:26 -07:00

18 lines
361 B
TOML

[book]
title = "extension_compatibility"
[preprocessor.my-preprocessor]
command = "./my-preprocessor"
custom-config = true
optional = true
[preprocessor.my-preprocessor.custom-table]
extra = "abc"
[output.html]
[output.my-renderer]
command = "./my-renderer"
custom-config = "renderer settings"
optional = true
[output.my-renderer.custom-table]
extra = "xyz"