jgm/pandoc

A title after a blockquote is not rendered well

rzelnik opened this issue · 1 comments

Explain the problem.
If there is a title after a blockquote, it is not rendered as a title.

Example:

# Example title

Example text

> Example blockquote

# Example title

pandoc input.md -o output.html

Rendered as:

obrázok

HTML output:

<h1 id="example-title">Example title</h1>
<p>Example text</p>
<blockquote>
<p>Example blockquote</p>
</blockquote>
<p># Example title</p>

Pandoc version?
Pandoc 3.1.13 on Ubuntu 23.10

My fault, there was a special character instead of space, and that caused the rendering error.