This helper tool uses BBEdit's Preview Windows to preview Markdown syntax in your rustdocs. It has the following components: - A binary Preview Filter - The source for the filter, written in Rust, as a binary in the toolbox - The Preview CSS that uses the classes outputted by the filter
19 lines
288 B
TOML
19 lines
288 B
TOML
[package]
|
|
name = "rust-bbedit-helpers"
|
|
version = "0.1.0"
|
|
authors = ["Ben S <ogham@bsago.me>"]
|
|
|
|
[[bin]]
|
|
name = "doc-splitter"
|
|
path = "src/doc-splitter.rs"
|
|
test = true
|
|
|
|
[[bin]]
|
|
name = "impl-generator"
|
|
path = "src/impl-generator.rs"
|
|
test = true
|
|
|
|
[dependencies]
|
|
regex = "0.1"
|
|
hoedown = "3.0"
|