I have a Kirby 3.9.0-rc.1 page with a blocks field. When I paste in a relatively long text with HTML tags, the output get’s cut off at a specific point. For outputting the block’s content, I use this: <?= $page->text()->toBlocks() ?>. The blocks field only contains one single block of type Markdown.
I suspect some HTML tag is not recognized or rendered properly and thus the rendering stops at that point. Is there a way to find technical information on what’s wrong? The page returns no error in the frontend and the page saves without any issue. Debugging is active. PHP version is v8.1.
When I use e. g. $page->text() or $page->text()->html() the page content isn’t cut off, just the formatting is wrong.
I just did a quick check with The W3C Markup Validation Service and it reports only one error about a meta tag so the error looks quite irrelevant and would have caused issues at other pages too. The HTML code I’m pasting is coming from a third party who generates the input on their side for further consumption by me. So I have no influence on the code nor do I know the code in detail (means I would have to check every single line to find every HTML tag and to see if/what could be wrong). Beside of that, I suspect that there might be some HTML tag unknown, browser-specific or in general too specific/rare so some parsing or validation fails. Is there a way to get more details of what Kirby tries to render? PHP error log only shows other errors, e. g. outdated entries.
Is there maybe an option to enable to output invalid HTML because I don’t care if it’s theoretically broken? Then I know it’s a validation issue somewhere and if my browser complains about the HTML code as well.
I just found out that when I use a blocks field with a text block (instead of a Markdown block), I can see the output as well so I suspect this is not related to how $page->field()->text() or html() work but rather an issue with the Markdown block of the blocks field. The text I have struggles with is copyright-protected so I can’t share it public. Is there a way I can share this via email or something and someone of the Kirby team takes a look? As this is a legal text, it’s a bit negative that I can’t get it properly published as expected. Of course, if it turns out that the text is wrongly formatted and I didn’t notice that, I have to talk to the author of this document. Happens with newer Kirby v3 version and newer PHP8 version as well.
The text has formatting so I would like to keep that for a better user experience. Furthermore the text is provided as-is thus I just want to have one field for copy and paste or for updating a single field with an API call without having to split the text in several blocks and thus make the maintenance more effort. Maybe this isn’t the right approach and I miss something obvious here. I even tried to strip down the HTML text to its basics to find out what is broken but I wasn’t successful. I send you the text, thank you for your support!