Skip to content

Commit 61e7825

Browse files
chore(deps): Update Rust crate pulldown-cmark to 0.13.0
1 parent f2cb42a commit 61e7825

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

clap_derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ syn = { version = "2.0.8", features = ["full"] }
3333
quote = "1.0.9"
3434
proc-macro2 = "1.0.69"
3535
heck = "0.5.0"
36-
pulldown-cmark = { version = "0.12.2", default-features = false, optional = true}
36+
pulldown-cmark = { version = "0.13.0", default-features = false, optional = true}
3737
anstyle = {version ="1.0.10", optional = true}
3838

3939
[features]

clap_derive/src/utils/doc_comments.rs

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -377,7 +377,9 @@ mod markdown {
377377
| Tag::TableHead
378378
| Tag::TableRow
379379
| Tag::TableCell
380-
| Tag::MetadataBlock(_),
380+
| Tag::MetadataBlock(_)
381+
| Tag::Superscript
382+
| Tag::Subscript,
381383
)
382384
| Event::End(
383385
TagEnd::FootnoteDefinition
@@ -388,7 +390,9 @@ mod markdown {
388390
| TagEnd::TableHead
389391
| TagEnd::TableRow
390392
| TagEnd::TableCell
391-
| TagEnd::MetadataBlock(_),
393+
| TagEnd::MetadataBlock(_)
394+
| TagEnd::Superscript
395+
| TagEnd::Subscript,
392396
)
393397
| Event::InlineMath(_)
394398
| Event::DisplayMath(_)

0 commit comments

Comments
 (0)