Skip to content

Commit

Permalink
chore(deps): update pulldown-cmark and pulldown-cmark-to-cmark
Browse files Browse the repository at this point in the history
  • Loading branch information
max-heller committed Sep 14, 2024
1 parent 3b8c839 commit 1dcb400
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 10 deletions.
21 changes: 16 additions & 5 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ log = "0.4.0"
mdbook = { version = "0.4.35", default-features = false }
normpath = "1.0.0"
once_cell = "1.0.0"
pulldown-cmark = { version = "0.10.0", default-features = false }
pulldown-cmark-to-cmark = "14.0.1"
pulldown-cmark = { version = "0.12.0", default-features = false }
pulldown-cmark-to-cmark = "17.0.0"
regex = "1.5.5"
semver = "1.0.0"
serde = { version = "1.0.85", features = ["derive"] }
Expand Down
9 changes: 6 additions & 3 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1162,7 +1162,7 @@ fn main() {}
"chapter.md",
))
.build();
insta::assert_snapshot!(book, @r###"
insta::assert_snapshot!(book, @r##"
├─ log output
│ INFO mdbook::book: Running the pandoc backend
│ INFO mdbook_pandoc::pandoc::renderer: Wrote output to book/latex/output.tex
Expand All @@ -1173,9 +1173,12 @@ fn main() {}
├─ latex/src/chapter.md
│ # Chapter Foo
│ [link](book/latex/src/chapter.md#chapter-foo "\"foo\" (bar)")
│ [link][link-with-description]
"###);
│ [link-with-description]: book/latex/src/chapter.md#chapter-foo "\"foo\" (bar)"
"##);
}

#[test]
Expand Down

0 comments on commit 1dcb400

Please sign in to comment.