Add mdbook-html
This new crate will hold the HTML renderer and related front-end parts.
This commit is contained in:
parent
8f3b6b4776
commit
6805740e20
4 changed files with 19 additions and 0 deletions
4
Cargo.lock
generated
4
Cargo.lock
generated
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -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" }
|
||||
|
|
|
|||
13
crates/mdbook-html/Cargo.toml
Normal file
13
crates/mdbook-html/Cargo.toml
Normal 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
|
||||
1
crates/mdbook-html/src/lib.rs
Normal file
1
crates/mdbook-html/src/lib.rs
Normal file
|
|
@ -0,0 +1 @@
|
|||
//! mdBook HTML renderer.
|
||||
Loading…
Add table
Reference in a new issue