Skip to content

Commit

Permalink
fix(deps): update rust crate pulldown-cmark to 0.13
Browse files Browse the repository at this point in the history
  • Loading branch information
rami3l authored and djc committed Feb 17, 2025
1 parent a570be0 commit 0851758
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ openssl = { version = "0.10", optional = true }
opentelemetry = { workspace = true, optional = true }
opentelemetry-otlp = { workspace = true, optional = true }
opentelemetry_sdk = { workspace = true, optional = true }
pulldown-cmark = { version = "0.12", default-features = false }
pulldown-cmark = { version = "0.13", default-features = false }
rand = "0.9"
regex = "1"
remove_dir_all = { version = "1.0.0", features = ["parallel"] }
Expand Down
4 changes: 4 additions & 0 deletions src/cli/markdown.rs
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,8 @@ impl<'a> LineFormatter<'a> {
Tag::Link { .. } => {}
Tag::Image { .. } => {}
Tag::FootnoteDefinition(_name) => {}
Tag::Superscript => {}
Tag::Subscript => {}
}
}

Expand Down Expand Up @@ -197,6 +199,8 @@ impl<'a> LineFormatter<'a> {
TagEnd::Image { .. } => {} // shouldn't happen, handled in start
TagEnd::FootnoteDefinition => {}
TagEnd::MetadataBlock(_) => {}
TagEnd::Superscript => {}
TagEnd::Subscript => {}
}
}

Expand Down

0 comments on commit 0851758

Please sign in to comment.