hugo version)?PS (PowerShell)> hugo version Hugo Static Site Generator v0.60.0-F2DEA9B0 windows/amd64 BuildDate: 2019-11-27T10:11:05Z
Yes
There is this Markdown as a test:
**test**\
test**test**\
**test**test\
test**test**
In Hugo v0.60.0, the output is as follows:

Some \ are not converted to
:
<p><strong>test</strong>\
test<strong>test</strong>\
<strong>test</strong>test<br>
test<strong>test</strong></p>
This problem can be avoided by inserting a space before the \:
**test** \
test**test** \
**test**test \
test**test**
Since v0.59.1 was handled normally, this may require some Markdown modifications.
goldmark author here, I've fixed the issue and released the new version.
Thank you for the quick fix!
I updated to Hugo v0.60.1 and confirmed this fix.
Most helpful comment
goldmark author here, I've fixed the issue and released the new version.