This sets up mdbook-preprocessor with the intent of being the core library that preprocessors use to implement the necessary interactions.
15 lines
380 B
TOML
15 lines
380 B
TOML
[package]
|
|
name = "mdbook-remove-emphasis"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
|
|
[dependencies]
|
|
mdbook-preprocessor.workspace = true
|
|
pulldown-cmark = { version = "0.12.2", default-features = false }
|
|
pulldown-cmark-to-cmark = "18.0.0"
|
|
serde_json = "1.0.132"
|
|
|
|
[[bin]]
|
|
name = "mdbook-remove-emphasis"
|
|
# This is tested through a separate test from the main package.
|
|
test = false
|