BracketPipe
BracketPipe copied to clipboard
Markdown generation is adding extra '\' character when encountering <br>
Given this HTML:
<div style="font-size:12pt;;"><p style="font-size:10.5pt;margin:0;">Some <strong>initial </strong>text.</p><p style="font-size:10.5pt;margin:0;"><br></p></div>
Calling Html.ToMarkdown is returning:
Some **initial** text.
\
With an extra non-sensical '\' at the end.
@erdomke could it possible be this code branch behaving unexpectedly?
https://github.com/erdomke/BracketPipe/blob/cba73e50322e27c0b6379f85ff2c3ec7ed7d24cb/src/BracketPipe/Parser/Text/MarkdownWriter.cs#L384-L388
Any thoughts?