mdbook-svgdx

Crates.iomdbook-svgdx
lib.rsmdbook-svgdx
version0.2.0
sourcesrc
created_at2024-09-25 16:15:15.790127
updated_at2024-10-03 14:46:49.825884
descriptionmdbook preprocessor to convert svgdx fenced code blocks into inline SVG images
homepage
repositoryhttps://github.com/codedstructure/mdbook-svgdx
max_upload_size
id1386482
size67,742
Ben Bass (codedstructure)

documentation

README

mdbook-svgdx

A preprocessor for mdBook to convert svgdx fenced code blocks into inline SVG images.

Installation

For now installation requires a working Rust toolchain, e.g. installed from rustup.rs.

Install mdbook-svgdx as follows:

cargo install mdbook-svgdx

Usage

Your mdbook source must be configured to use the mdbook-svgdx preprocessor. To do this, simply add the following line to your book.toml file.

[preprocessor.svgdx]

Developing

To test changes to mdbook-svgdx, update your book.toml with the following 'command' line under the preprocessor.svgdx block:

[preprocessor.svgdx]
command = "cargo run --manifest-path /path/to/mdbook-svgdx/Cargo.toml --quiet"

In order to test changes to the svgdx library itself, update the appropriate dependencies entry of Cargo.toml of this (mdbook-svgdx) repo to point to a local clone of svgdx, rather than providing a version specifier:

svgdx = { path = "/path/to/svgdx", default-features = false }

License

This repository is released under the MIT license; for more information see the LICENSE file.

Commit count: 6

cargo fmt