Skip to content

Commit

Permalink
wip html parser
Browse files Browse the repository at this point in the history
  • Loading branch information
takurinton committed Jul 6, 2024
1 parent 75c5ff1 commit 8ad1d4a
Show file tree
Hide file tree
Showing 8 changed files with 513 additions and 2 deletions.
146 changes: 146 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@

members = [
"markdown",
"generator"
"generator",
"app"
]
18 changes: 18 additions & 0 deletions app/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
[package]
name = "app"
version = "0.1.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
wasm-bindgen = "0.2"
js-sys = "0.3"
web-sys = { version = "0.3", features = ["Document", "Element", "Window", "Node", "HtmlElement"] }
proc-macro2 = "1.0"
markdown = { path = "../markdown" }
quote = "1.0"
syn = { version = "2", features = ["full", "extra-traits"] }

[lib]
proc-macro = true
Loading

0 comments on commit 8ad1d4a

Please sign in to comment.