miaolz123 / vue-markdown

A Powerful and Highspeed Markdown Parser for Vue
https://miaolz123.github.io/vue-markdown/
MIT License
1.89k stars 257 forks source link

Hard line breaks don't work #89

Open SouthRibbleTech opened 5 years ago

SouthRibbleTech commented 5 years ago

Unable to use Hard Line Breaks
works fine \n Does not work

ScottKGregory commented 3 years ago

Perhaps you've already found this workaround, but my issue was that the markdown came in as part of a JSON response to I had to replace the newlines using this .replaceAll("\\n", "\n") at which point vue-markdown treated everything like I expected.