Compare commits

..

No commits in common. "3643ba0dfd5a8a9cc72e608ac8cdcee09f44d731" and "c7c94581b610fdb48203a03290f7b930bb27b1b3" have entirely different histories.

3 changed files with 4 additions and 7 deletions

View file

@ -7,8 +7,3 @@ edition = "2021"
lightningcss = { version = "1.0.0-alpha.59", default-features = false, features = ["grid"] } lightningcss = { version = "1.0.0-alpha.59", default-features = false, features = ["grid"] }
pulldown-cmark = { version = "0.12.2", default-features = false, features = ["pulldown-cmark-escape"] } pulldown-cmark = { version = "0.12.2", default-features = false, features = ["pulldown-cmark-escape"] }
walkdir = "2.5.0" walkdir = "2.5.0"
[profile.release]
codegen-units = 1
lto = "fat"
panic = "abort"

View file

@ -22,6 +22,8 @@ mydata: 123
- [ ] Todo - [ ] Todo
- [ ] Won't fix - [ ] Won't fix
[[x] Task inside link](https://dc09.ru)
> [!WARNING] > [!WARNING]
> >
> Some important quote > Some important quote

View file

@ -298,10 +298,10 @@ pub fn compile_markdown(
TaskListMarker(done) => { TaskListMarker(done) => {
if done { if done {
html.write_all(b"<input type=checkbox checked disabled>")?; html.write_all(b"<input type=checkbox checked disabled>")?;
gmi.write_all(b"[x] ")?; write_inline(&mut gmi, state, "[x] ", &mut links)?;
} else { } else {
html.write_all(b"<input type=checkbox disabled>")?; html.write_all(b"<input type=checkbox disabled>")?;
gmi.write_all(b"[ ] ")?; write_inline(&mut gmi, state, "[ ] ", &mut links)?;
} }
} }