In which content file do you have that markdown? Recently Hugo does not parse markdown inside of div and/or span tags. There are config variables you can set and try out:
[blackfriday]
nofollowLinks = true
noreferrerLinks = true
plainIDAnchors = true
extensions = [
"laxHtmlBlocks", # laxer block handling... let's see what this does?
"hardLineBreak", # newlines result in line breaks
]
Thank you for your response. I don’t have that exact markdown, but all my content files within /blog do not have hardlinebreaks since upgrading to the v0.75.
I was wondering if it was possible to get this working with the new version and Goldmark?
Try the hardLineBreak part in my config sample above. It should be added (with the blackfriday header and extension = ) around line 8 of your config.toml
Wait a sec. Adding a margin to your p-tag solves the issue? Don’t get me wrong, but that is EXACTLY how this has to be solved. It’s not a hack. If two of these lines are inside of p tags each then the outcome that they don’t have distance (between the p-tags) is a bug in your CSS.