Compare commits
No commits in common. "3643ba0dfd5a8a9cc72e608ac8cdcee09f44d731" and "c7c94581b610fdb48203a03290f7b930bb27b1b3" have entirely different histories.
3643ba0dfd
...
c7c94581b6
3 changed files with 4 additions and 7 deletions
|
@ -7,8 +7,3 @@ edition = "2021"
|
|||
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"] }
|
||||
walkdir = "2.5.0"
|
||||
|
||||
[profile.release]
|
||||
codegen-units = 1
|
||||
lto = "fat"
|
||||
panic = "abort"
|
||||
|
|
|
@ -22,6 +22,8 @@ mydata: 123
|
|||
- [ ] Todo
|
||||
- [ ] Won't fix
|
||||
|
||||
[[x] Task inside link](https://dc09.ru)
|
||||
|
||||
> [!WARNING]
|
||||
>
|
||||
> Some important quote
|
||||
|
|
|
@ -298,10 +298,10 @@ pub fn compile_markdown(
|
|||
TaskListMarker(done) => {
|
||||
if done {
|
||||
html.write_all(b"<input type=checkbox checked disabled>")?;
|
||||
gmi.write_all(b"[x] ")?;
|
||||
write_inline(&mut gmi, state, "[x] ", &mut links)?;
|
||||
} else {
|
||||
html.write_all(b"<input type=checkbox disabled>")?;
|
||||
gmi.write_all(b"[ ] ")?;
|
||||
write_inline(&mut gmi, state, "[ ] ", &mut links)?;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue