mdx-gen 0.0.4

A robust Rust library for processing Markdown and converting it to HTML with support for custom blocks, enhanced table formatting, and flexible configuration options.
Documentation
1
2
3
4
5
6
7
8
9
10
11
# Pin contributors to the same toolchain CI uses.
#
# Tracks the `stable` channel — `rustup update` picks up new
# releases. The `components` list guarantees `clippy` + `rustfmt`
# are present so the pre-push hook under `.githooks/pre-push` runs
# to completion without a manual rustup install.

[toolchain]
channel = "stable"
components = ["clippy", "rustfmt"]
profile = "minimal"