flexmark-java
flexmark-java copied to clipboard
html2md Unexpectedly Adds Whitespace
Detected in version: 0.62.2 (flexmark-all)
Problem
If a line contains a :
and <br/>
the html converter unexpectedly adds a whitespace before the :
. See examples below.
Example 1
Code
final String html = "<b>Foo</b>:<br/>bar";
final String md = FlexmarkHtmlConverter.builder().build().convert(html);
System.out.println(md);
Actual Output
**Foo** :
bar
Expected Output
**Foo**:
bar
Example 2
Code
final String html = "<b>Foo</b>: bar<br/>";
final String md = FlexmarkHtmlConverter.builder().build().convert(html);
System.out.println(md);
Actual Output
**Foo** : bar
Expected Output
**Foo**: bar