Figure out markdown to html conversion.

This commit is contained in:
Olivia Brooks
2025-10-13 19:40:10 -04:00
parent bc3eb9d77a
commit 7a7ba5d21b
6 changed files with 62 additions and 13 deletions

16
Cargo.lock generated
View File

@@ -124,6 +124,7 @@ version = "0.1.0"
dependencies = [
"chrono",
"clap",
"markdown",
"ron",
"serde",
]
@@ -186,6 +187,15 @@ version = "0.4.28"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "34080505efa8e45a4b816c349525ebe327ceaa8559756f0356cba97ef3bf7432"
[[package]]
name = "markdown"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a5cab8f2cadc416a82d2e783a1946388b31654d391d1c7d92cc1f03e295b1deb"
dependencies = [
"unicode-id",
]
[[package]]
name = "num-traits"
version = "0.2.19"
@@ -291,6 +301,12 @@ dependencies = [
"unicode-ident",
]
[[package]]
name = "unicode-id"
version = "0.3.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "70ba288e709927c043cbe476718d37be306be53fb1fafecd0dbe36d072be2580"
[[package]]
name = "unicode-ident"
version = "1.0.19"