Is is not possible to use the editor inside structure fields? The output I get on the page is - is it JSON stuff?
Output:
[
{
"attrs": [],
"content": "kkgle\u00f6ew",
"id": "_2loor6ejn",
type": "paragraph
}
]
Blueprint:
neueProjekte:
label: Neues Projekt
type: structure
fields:
newProject:
label: Neues Projekt anlegen
type: editor
size: medium
test:
label: Testfeld
type: textarea
Template:
<?php $items = $page->neueProjekte()->toStructure();?>
<?php foreach ($items as $item): ?>
<article>
<?= $item->newProject()->blocks() ?>
<?= $item->test()->kt() ?>
</article>
<?php endforeach ?>