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
I think I may have found a bug in the blade processor.
If I have a markdown file with YAML that has html below it on one line, it doesn't process it.
This example doesn't work and only shows the header 1, when I yield it in a blade file.
<h1>This is a header1</h1><h2>This is a header2</h2><p>This is a paragraph of text</p><br><br><br><br><p>This text contains <sub>subscript</sub> text.</p>
The following example works.
<h1>This is a header1</h1>
<h2>This is a header2</h2>
<p>This is a paragraph of text</p>
<br>
<br>
<br>
<br>
<p>This text contains <sub>subscript</sub> text.</p>
Why is that? Is this default behavior?
The text was updated successfully, but these errors were encountered:
I think I may have found a bug in the blade processor.
If I have a markdown file with YAML that has html below it on one line, it doesn't process it.
This example doesn't work and only shows the header 1, when I yield it in a blade file.
The following example works.
Why is that? Is this default behavior?
The text was updated successfully, but these errors were encountered: