How to read structured fields with textarea fields

I made a structured field “Steps” in blueprint.
The result is:

Steps:

- 
  title: vertel ons wat we op mogen halen
 desc: >
    Stuur ons de foto’s van jouw meubel(s)
    per mail of via WhatsApp
- 
  title: geef de belangrijkste info aan ons door
  desc: '**Waar** mogen we de meubels komen ophalen? Op **welke verdieping** staan de meubels? Zijn er verder nog bijzonderheden? Is er bijvoorbeeld een **lift** en kunnen we er goed **parkeren**? Een goede voorbereiding is immers het halve werk!'

I have problems with the second “desc:”: Some words are made strong. With a separate field I can use kirbyText(). I did try the toStructure() method and yaml(). The first option seems not to work for this situation and with the second method I can not use kirbyText(). Is there a nice solution?

You can also call kirbytext() on a field in a structure, just like you would on a standalone textarea field:

<?php

$items = $page->steps()->toStructure();
foreach ($items as $item): ?>
  <h2><?= $item->title()->html() ?></h2>
  <?= $item->desc()->kt() ?>
<?php endforeach ?>
1 Like