flexmark-java icon indicating copy to clipboard operation
flexmark-java copied to clipboard

html2md Unexpectedly Removes Whitespace

Open eum2o opened this issue 4 years ago • 0 comments

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

eum2o avatar Aug 24 '20 10:08 eum2o