Rendering markdown from page params

I’m trying to display a list of items from a defined Page parameter. In my frontmatter it is set up like this:

priceList:
  - planName: Name
    planList: >
      * List Item
      * List Item
    planPrice: Price

So, what I want to acheive is that every markdown list item in planList is displayed as a

  • in the rendered html, in the template I’m calling it like this, however, it only wraps the whole array in one
  • -tag.

    {{ .planList | markdownify }}

  • Hey there.

    Look for apply function in the doc.

    1 Like

    Awesome. That is exactly what I needed!

    1 Like