Hey there, I have a short question: I know about the possibility to use custom page fields in the text
property of a pages field. Is it also possible to use markdown/kirbytext/html here?
An example of what I want to do in my blueprint:
fields:
myfield:
label: Pages
type: pages
layout: cards
query: site.pages.published
text: "**{{ page.title }}** <br> {{ page.teaser }}"
Is that possible somehow? Currently it only returns the unparsed string.
Thank you!