Hello everyone,
I have a page for users that can create input from frontend, after the succesfull input the user sees success page. It’s very similar to this cookbook: Creating pages from frontend | Kirby CMS (getkirby.com), it has same plugin etc.
Now I got a small Issue, I have a personalized message in “success page”. When in markdown, the message is shown correctly, in markdown it looks like this:
Thank you for your message, here is your personalized link: {{ meetlink }}
Output on success page looks like this:
Thank you for your message, here is your personalized link: https://example/12930712301293081
But I’d love to have a raw html message without markdown linking it. I tried to use this in template:
<?= $page->text()->html(); ?>
it outputs:
Thank you for your message, here is your personalized link: {{ meetlink }}
As mentioned, i need the pure text. I know it sounds weird, but it’s neccessary in my user case
Do anyone has an idea how to achieve this?