Skip to content

Commit

Permalink
Merge pull request #5934 from clap-rs/renovate/pulldown-cmark-0.x
Browse files Browse the repository at this point in the history
chore(deps): Update Rust crate pulldown-cmark to 0.13.0
  • Loading branch information
epage authored Mar 3, 2025
2 parents 5e62c5d + 61e7825 commit 94c774b
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
6 changes: 3 additions & 3 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 clap_derive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ syn = { version = "2.0.8", features = ["full"] }
quote = "1.0.9"
proc-macro2 = "1.0.69"
heck = "0.5.0"
pulldown-cmark = { version = "0.12.2", default-features = false, optional = true}
pulldown-cmark = { version = "0.13.0", default-features = false, optional = true}
anstyle = {version ="1.0.10", optional = true}

[features]
Expand Down
8 changes: 6 additions & 2 deletions clap_derive/src/utils/doc_comments.rs
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,9 @@ mod markdown {
| Tag::TableHead
| Tag::TableRow
| Tag::TableCell
| Tag::MetadataBlock(_),
| Tag::MetadataBlock(_)
| Tag::Superscript
| Tag::Subscript,
)
| Event::End(
TagEnd::FootnoteDefinition
Expand All @@ -388,7 +390,9 @@ mod markdown {
| TagEnd::TableHead
| TagEnd::TableRow
| TagEnd::TableCell
| TagEnd::MetadataBlock(_),
| TagEnd::MetadataBlock(_)
| TagEnd::Superscript
| TagEnd::Subscript,
)
| Event::InlineMath(_)
| Event::DisplayMath(_)
Expand Down

0 comments on commit 94c774b

Please # to comment.