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
We have an inline html element for rendering a persons name and linking to their page in Blissfully. We noticed that if an HTML element is at the start of a line, it will be considered its own block, even if there's following text.
So,
<personname="Dillon" /> is fantastic!
will render as
[HtmlBlock(HtmlElement"person"[{ name ="name", value ="Dillon"}][]),Paragraph[Text" is fantastic!"]]
instead of
[Paragraph[HtmlInline(HtmlElement"person"[{ name ="name", value ="Dillon"}][]),Text" is fantastic!"]]
Our current workaround is to take the markdown source, and prepend a space to each line, which convinces the parser this is an inline thing.
This initially seemed related to #50, but after review, it seems a bit different.
❤️
The text was updated successfully, but these errors were encountered:
Hello!
We have an inline html element for rendering a persons name and linking to their page in Blissfully. We noticed that if an HTML element is at the start of a line, it will be considered its own block, even if there's following text.
So,
will render as
instead of
Our current workaround is to take the markdown source, and prepend a space to each line, which convinces the parser this is an inline thing.
This initially seemed related to #50, but after review, it seems a bit different.
❤️
The text was updated successfully, but these errors were encountered: