However, they are not entirely ignored, since they change \markdownRendererOlBeginTight to \markdownRendererOlBegin. Therefore, even if they do not produce a \markdownRendererHardLineBreak, they are recognized at some level rather than ignored.
Furthermore, hard line breaks are not ignored in fancy lists when the option fancyLists is enabled:
$ docker run --pull=always --rm -i witiko/markdown markdown-cli fancyLists=true <<< $'a. foo \nb. bar\n bar \nc. baz '
On the first glance, hard line breaks are ignored at the end of unordered and ordered list items, as expected:
However, they are not entirely ignored, since they change
\markdownRendererOlBeginTight
to\markdownRendererOlBegin
. Therefore, even if they do not produce a\markdownRendererHardLineBreak
, they are recognized at some level rather than ignored.Furthermore, hard line breaks are not ignored in fancy lists when the option
fancyLists
is enabled: