flexmark-java
flexmark-java copied to clipboard
html2md Unexpectedly Removes Whitespace
Detected in version: 0.62.2 (flexmark-all)
Code
final String html = "<b>Foo </b>bar";
com.vladsch.flexmark.html2md.converter.FlexmarkHtmlConverter c = FlexmarkHtmlConverter.builder().build();
System.out.println(c.convert(html));
Actual Output
**Foo**bar
Expected Output
**Foo** bar