Lines of code | |
Build Status | |
Speed |
You need to set RUSTDOCSFLAGS
EXPLICITLY
RUSTDOCFLAGS="--html-in-header katex-header.html" cargo doc --no-deps
This only works for --no-deps
because katex-header.html
doesn't exist fot dependent crates.
If you with to set RUSTDOC
flags automatically in this crate you can put this in your .cargo/config.toml
file
[build]
rustdocflags = ["--html-in-header", "katex-header.html"]