diff options
author | Skyler Hawthorne | 2022-01-18 01:41:44 +0000 |
---|---|---|
committer | GitHub | 2022-01-18 01:41:44 +0000 |
commit | 96d4ca5f7349f2df6c3e9a949242a0e49b2ce853 (patch) | |
tree | 4b5ed4819588306d045bf737bc4d29c8f7b7a5d4 /helix-term/src | |
parent | 56a9ce5d8334e82bffb56986cef554c2ac81268f (diff) |
Dependabot/cargo/pulldown cmark 0.9.1 (#1533)
* build(deps): bump pulldown-cmark from 0.8.0 to 0.9.1
Bumps [pulldown-cmark](https://github.com/raphlinus/pulldown-cmark) from 0.8.0 to 0.9.1.
- [Release notes](https://github.com/raphlinus/pulldown-cmark/releases)
- [Commits](https://github.com/raphlinus/pulldown-cmark/compare/v0.8.0...v0.9.1)
---
updated-dependencies:
- dependency-name: pulldown-cmark
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
* cmark 0.9 fixes
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Diffstat (limited to 'helix-term/src')
-rw-r--r-- | helix-term/src/ui/markdown.rs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/helix-term/src/ui/markdown.rs b/helix-term/src/ui/markdown.rs index 46657fb9..1f0fc38c 100644 --- a/helix-term/src/ui/markdown.rs +++ b/helix-term/src/ui/markdown.rs @@ -77,7 +77,9 @@ fn parse<'a>( Event::End(tag) => { tags.pop(); match tag { - Tag::Heading(_) | Tag::Paragraph | Tag::CodeBlock(CodeBlockKind::Fenced(_)) => { + Tag::Heading(_, _, _) + | Tag::Paragraph + | Tag::CodeBlock(CodeBlockKind::Fenced(_)) => { // whenever code block or paragraph closes, new line let spans = std::mem::take(&mut spans); if !spans.is_empty() { @@ -158,7 +160,7 @@ fn parse<'a>( lines.push(Spans::from(span)); } } - } else if let Some(Tag::Heading(_)) = tags.last() { + } else if let Some(Tag::Heading(_, _, _)) = tags.last() { let mut span = to_span(text); span.style = heading_style; spans.push(span); |