summaryrefslogtreecommitdiffstats
path: root/Cargo.lock
diff options
context:
space:
mode:
authorJan-Erik Rediger <janerik@fnordig.de>2022-01-25 21:51:56 +0100
committerJan-Erik Rediger <janerik@fnordig.de>2022-01-25 22:17:47 +0100
commitdb5c14c79232c2d6cc5ada8a0fd44c55e448aec2 (patch)
tree7476f95d9763ed6aabf754b0b50529ea984f064e /Cargo.lock
parent87b54eeeefac6dda1a0fb1fc166cec70339eac7b (diff)
Avoid roundtripping through pulldown-cmark
Roundtripping markdown is actually quite hard. We don't actually require that. All we need is once parsing the markdown to find the mermaid code blocks. We then manually generate HTML and all other content can be copied unparsed again.
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock10
1 files changed, 0 insertions, 10 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 043ecb4..3edef42 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -894,7 +894,6 @@ dependencies = [
"mdbook",
"pretty_assertions",
"pulldown-cmark",
- "pulldown-cmark-to-cmark",
"serde_json",
"tempfile",
"toml_edit",
@@ -1308,15 +1307,6 @@ dependencies = [
]
[[package]]
-name = "pulldown-cmark-to-cmark"
-version = "9.0.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "3f94dc756ef5c50ad28ccea8428ba5de9f4dca1fff6516a26b85e0b125a70d17"
-dependencies = [
- "pulldown-cmark",
-]
-
-[[package]]
name = "quick-error"
version = "1.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"