-
Notifications
You must be signed in to change notification settings - Fork 145
Closed
Description
If I have a file that contains only the characters and
(so literally 61 6e 64
hex) and I convert to Markdown (using both CommonMark.CommonMarkConverter.Convert
and the CommonMark.Console app with that binary in a file called test.md
and a command line of CommonMark.Console.exe test.md --out out.html
), I receive the following output:
3c 70 3e 61 6e 64 3c 2f 70 3e 0d 0a 0d 0a
aka
<p>and</p>\r\n\r\n
I'd expect:
3c 70 3e 61 6e 64 3c 2f 70 3e
that is,
<p>and</p>
without newlines.
Metadata
Metadata
Assignees
Labels
No labels