Skip to content

Commit 0851758

Browse files
rami3ldjc
authored andcommitted
fix(deps): update rust crate pulldown-cmark to 0.13
1 parent a570be0 commit 0851758

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ openssl = { version = "0.10", optional = true }
5656
opentelemetry = { workspace = true, optional = true }
5757
opentelemetry-otlp = { workspace = true, optional = true }
5858
opentelemetry_sdk = { workspace = true, optional = true }
59-
pulldown-cmark = { version = "0.12", default-features = false }
59+
pulldown-cmark = { version = "0.13", default-features = false }
6060
rand = "0.9"
6161
regex = "1"
6262
remove_dir_all = { version = "1.0.0", features = ["parallel"] }

src/cli/markdown.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -157,6 +157,8 @@ impl<'a> LineFormatter<'a> {
157157
Tag::Link { .. } => {}
158158
Tag::Image { .. } => {}
159159
Tag::FootnoteDefinition(_name) => {}
160+
Tag::Superscript => {}
161+
Tag::Subscript => {}
160162
}
161163
}
162164

@@ -197,6 +199,8 @@ impl<'a> LineFormatter<'a> {
197199
TagEnd::Image { .. } => {} // shouldn't happen, handled in start
198200
TagEnd::FootnoteDefinition => {}
199201
TagEnd::MetadataBlock(_) => {}
202+
TagEnd::Superscript => {}
203+
TagEnd::Subscript => {}
200204
}
201205
}
202206

0 commit comments

Comments
 (0)