copy-down
copy-down copied to clipboard
Non breaking space is not converted correctly
Correct output for normal space character
Input:
<strong>This input string </strong> with bold text.
Output:
**This input string** with bold text.
Incorrect output for normal non breaking space
Input:
<strong>This input string </strong> with bold text.
Output:
**This input string **with bold text.
Expected
**This input string** with bold text.
The non breaking space or the white space should always be after the ending ** block.
Same for flexmark-java: https://github.com/vsch/flexmark-java/issues/656