Markdown formatting has no effect

When I write starstar bold starstar in the Blog section the result is really bold.

But when I do it out side the blog on any other page the online result is starstar bold starstar.

Does the markdown ony work within the Blogsystem ?

It depends on your template.

<?= $page->text()->kirbytext() ?>

should do the job.

There are different ways to output the content of a field. A textarea field is usually rendered with

<?= $page->text()->kirbytext() ?>

whereas many people use the html() method to render a text field, e.g. in a headline:

<h1><?= $page->title()->html() ?></h1>

You would have to check what is in your template for the particular field and change that if necessary.

Note that you can also use the kirbytext() method with fields of type text, but don’t use it within a header tag.

Thanks a lot - that works fine :slight_smile: