Skip to content

Commit 6805740

Browse files
committed
Add mdbook-html
This new crate will hold the HTML renderer and related front-end parts.
1 parent 8f3b6b4 commit 6805740

File tree

4 files changed

+19
-0
lines changed

4 files changed

+19
-0
lines changed

Cargo.lock

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ rust-version = "1.85.0" # Keep in sync with installation.md and .github/workflow
2424
anyhow = "1.0.98"
2525
log = "0.4.27"
2626
mdbook-core = { path = "crates/mdbook-core" }
27+
mdbook-html = { path = "crates/mdbook-html" }
2728
mdbook-markdown = { path = "crates/mdbook-markdown" }
2829
mdbook-preprocessor = { path = "crates/mdbook-preprocessor" }
2930
mdbook-renderer = { path = "crates/mdbook-renderer" }

crates/mdbook-html/Cargo.toml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
[package]
2+
name = "mdbook-html"
3+
version = "0.5.0-alpha.1"
4+
description = "mdBook HTML renderer"
5+
edition.workspace = true
6+
license.workspace = true
7+
repository.workspace = true
8+
rust-version.workspace = true
9+
10+
[dependencies]
11+
12+
[lints]
13+
workspace = true

crates/mdbook-html/src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
//! mdBook HTML renderer.

0 commit comments

Comments
 (0)