Skip to content

Commit d84c907

Browse files
renovate[bot]rami3l
andcommitted
fix(deps): update rust crate pulldown-cmark to 0.11
Co-authored-by: rami3l <[email protected]>
1 parent df2dd48 commit d84c907

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

Cargo.lock

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ openssl = { version = "0.10", optional = true }
6767
opentelemetry = { workspace = true, optional = true }
6868
opentelemetry_sdk = { workspace = true, optional = true }
6969
opentelemetry-otlp = { workspace = true, optional = true }
70-
pulldown-cmark = { version = "0.10", default-features = false }
70+
pulldown-cmark = { version = "0.11", default-features = false }
7171
rand = "0.8"
7272
regex = "1"
7373
remove_dir_all = { version = "0.8.1", features = ["parallel"] }

src/cli/markdown.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ impl<'a> LineFormatter<'a> {
131131
Tag::TableHead => {}
132132
Tag::TableRow => {}
133133
Tag::TableCell => {}
134-
Tag::BlockQuote => {}
134+
Tag::BlockQuote(_) => {}
135135
Tag::CodeBlock(_) | Tag::HtmlBlock { .. } => {
136136
self.wrapper.write_line();
137137
self.wrapper.indent += 2;
@@ -219,6 +219,8 @@ impl<'a> LineFormatter<'a> {
219219
TaskListMarker(true) => {}
220220
TaskListMarker(false) => {}
221221
InlineHtml(_) => {}
222+
InlineMath(_) => {}
223+
DisplayMath(_) => {}
222224
}
223225
}
224226
}

0 commit comments

Comments
 (0)