diff options
| author | John MacFarlane <jgm@berkeley.edu> | 2022-04-20 13:34:41 -0700 |
|---|---|---|
| committer | John MacFarlane <jgm@berkeley.edu> | 2022-04-20 13:34:41 -0700 |
| commit | f3cfeba3efc1a94b02040e5b206123f58d08313a (patch) | |
| tree | a3edbfc02203bd97ddd73517c64313c81d6d6b8a /test | |
| parent | ec27946869e6829348fc14c6c9eca14af005cdcc (diff) | |
Don't parse inline notes with blank lines inside.
Previously we parsed them but discarded part of the content.
Closes #8028.
Diffstat (limited to 'test')
| -rw-r--r-- | test/command/8028.md | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/test/command/8028.md b/test/command/8028.md new file mode 100644 index 000000000..325e93b64 --- /dev/null +++ b/test/command/8028.md @@ -0,0 +1,10 @@ +``` +% pandoc +foo^[a note + +with multiple paragraphs] +^D +<p>foo^[a note</p> +<p>with multiple paragraphs]</p> + +``` |
