Fixed some minor typos, wrote a tool to split the README.md and have the tool generate latex files for future use

This commit is contained in:
2023-08-30 02:30:01 +02:00
parent 0b67f82364
commit 0933a9ba77
12 changed files with 772 additions and 10 deletions

16
tool/Cargo.toml Normal file
View File

@@ -0,0 +1,16 @@
[package]
name = "tool"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.75"
dotenvy = "0.15.7"
gray_matter = { version = "0.2.6", features = [
"toml",
], default-features = false }
regex = "1.9.4"
serde = { version = "1.0.188", features = ["derive"] }
walkdir = "2.3.3"