Given a field text with a textarea and the following content:
foo & bar
(link: http://example.com text: foo & bar)
In my template/snippet I am using the following line:
<?= $page->text()->escape()->kirbytext() ?>
The output is the following:
<p>foo & bar</p>
<p><a href="http://example.com">foo &amp; bar</a></p>
It sems like the KirbyTag was escaped two times, while the content was escaped just fine. What would be the right approach to escape a field with KirbyText content without escaping parts of it twice?