Hello,
I am working on my first website with kirby and markdown just doesn’t work. Simple things like paragraphs and bold font doesn’t work.
I am working with the PlainKit, do I need to install Markdown manually? ( if so, I don’t know how to go about it
)
Thanks for your help 
No, definitely not.
What exactly do you mean with it doesn’t work? How do you output the content of the field with Markdown content in your template? For Markdown/Kirbytext to render, you need to output it with the kirbytext() (or short
kt()`) field method.
For example, if you have a textarea field called text in your blueprint, you would output it in your template like this:
<?= $page->text()->kt() ?>
Hey!
Thank you. It works, I forgot to put “->kt()” 