Open
Description
Is your feature request related to a problem? Please describe.
Plain line breaks are trimmed from around the highlight template, which joins callouts, and attempts to circumvent this produce greater problems in Obsidian.
Describe the solution you'd like
Preserve surrounding whitespace in the highlight template.
Describe alternatives you've considered
Edit main.js
from ((e,n.map(e=>this.highlightRenderer.render(e,t)).join("\n"))
to be (e,n.map(e=>this.highlightRenderer.render(e,t)).join("\n\n"))
Additional context
Thanks.