Add mdbook-html

This new crate will hold the HTML renderer and related front-end parts.
This commit is contained in:
Eric Huss 2025-07-21 18:06:49 -07:00
parent 8f3b6b4776
commit 6805740e20
4 changed files with 19 additions and 0 deletions

4
Cargo.lock generated
View file

@ -1312,6 +1312,10 @@ dependencies = [
"toml",
]
[[package]]
name = "mdbook-html"
version = "0.5.0-alpha.1"
[[package]]
name = "mdbook-markdown"
version = "0.5.0-alpha.1"

View file

@ -24,6 +24,7 @@ rust-version = "1.85.0" # Keep in sync with installation.md and .github/workflow
anyhow = "1.0.98"
log = "0.4.27"
mdbook-core = { path = "crates/mdbook-core" }
mdbook-html = { path = "crates/mdbook-html" }
mdbook-markdown = { path = "crates/mdbook-markdown" }
mdbook-preprocessor = { path = "crates/mdbook-preprocessor" }
mdbook-renderer = { path = "crates/mdbook-renderer" }

View file

@ -0,0 +1,13 @@
[package]
name = "mdbook-html"
version = "0.5.0-alpha.1"
description = "mdBook HTML renderer"
edition.workspace = true
license.workspace = true
repository.workspace = true
rust-version.workspace = true
[dependencies]
[lints]
workspace = true

View file

@ -0,0 +1 @@
//! mdBook HTML renderer.