I’m upgrading a site in development form Kirby v2 to v3.
Something has broken that I cannot seem to fix.
In the panel I have a textarea field with the following content.
(image: img_6035.jpg caption: text with *italics*)
When published using <?= $page->text()->kirbytext(); ?> a figure tag appears for the image as I would expect. But the markdown does not work and the result is this:
<figure>
<img src="http://localhost:8888/media/pages/support/840203468-1550791454/img_6035.jpg">
<figcaption>text with *italics*</figcaption>
</figure>
What I was expecting was this
<figure>
<img src="http://localhost:8888/media/pages/support/840203468-1550791454/img_6035.jpg">
<figcaption>text with <em>italics</em></figcaption>
</figure>
This did happen as above in v2 so I’m curious if this is a bug or a change in the core that I should try to work around.