Comment in page text?

Hi,

is it possible to mark text as comment like in a programming language?

e.g /* this text will not be displayed

or // this text will not be displayed

The HTML equivalent of a CSS/JS/PHP comment is the following syntax:

<!-- this text will not be displayed -->

This also works in Markdown/Kirbytext (but will not be stripped out before sending the rendered HTML to the browser; you could use a post-filter for that if you need it).

Oh. Did not expect that this is so easy.

Thank you.