You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered:
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.
The text was updated successfully, but these errors were encountered: