Textarea - how to produce indented list?

Hi there,

I have a very simple use-case: I want to produce an indented list. Using markdown, it would look like this

- Item A
    - Item A.1
    - Item A.2
- Item B

However, that does not work - although tabs are created, the text in HTML is shown without identations since HTML does not “understand” tabs.

I am prasing my textarea field using kirbytextinline()

What am I overseeing here?

Thanks
Andreas

That doesn’t make sense, you have to use kirbytext() to produce the markup for lists.

True :slight_smile: Thank you!