Crates.io | mdbook-wavedrom |
lib.rs | mdbook-wavedrom |
version | 0.10.0 |
source | src |
created_at | 2022-02-15 21:23:07.37631 |
updated_at | 2022-02-15 21:23:07.37631 |
description | mdbook preprocessor to add mermaid support |
homepage | https://github.com/JasMoH/mdbook-wavedrom |
repository | https://github.com/JasMoH/mdbook-wavedrom |
max_upload_size | |
id | 532939 |
size | 195,450 |
A preprocessor for mdbook to add wavedrom support. This is based diretly on mdbook-mermaid, and is basically just a search/replace.
It turns this:
```wavedrom
{signal: [
{name: 'clk', wave: 'p.....|...'},
{name: 'dat', wave: 'x.345x|=.x', data: ['head', 'body', 'tail', 'data']},
{name: 'req', wave: '0.1..0|1.0'},
{},
{name: 'ack', wave: '1.....|01.'}
]}
```
into this:
in your book. (Graph provided by wavedrom Live Editor
If you want to use only this preprocessor, install the tool:
cargo install mdbook-wavedrom
Then let mdbook-wavedrom
add the required files and configuration:
mdbook-mermaid install path/to/your/book
This will add the following configuration to your book.toml
:
[preprocessor.mermaid]
command = "mdbook-wavedrom"
[output.html]
additional-js = ["wavedrom.min.js", "wavedrom-init.js"]
It will skip any unnecessary changes and detect if mdbook-mermaid
was already configured.
Additionally it copies the files mermaid.min.js
and mermaid-init.js
into your book's directory.
You find these files in the src/bin/assets
directory.
You can modify mermaid-init.js
to configure Mermaid, see the Mermaid documentation for all options.
Finally, build your book:
mdbook path/to/book
MPL. See LICENSE.
Copyright (c) 2018-2021 Jan-Erik Rediger janerik@fnordig.de
Mermaid is MIT licensed.
The bundled assets (mermaid.min.js
) are MIT licensed.