Goldmark breaks shortcode

I have this simple shortcode:

{{% quote "author" %}}
abc
def
{{% /quote %}}

That doesn’t output anything with Goldmark. Any idea why?

I noticed it works when replacing the % delimiter with </>. But then, is a shortcode with </> delimiters using .markdownify strictly equal to a %-delimitered shortcode? (so do I have to use this workaround everywhere?)
(see Shortcodes with Markdown: “… will now be fully rendered when sent to the content renderer, meaning they can be part of the generated table of contents, footnotes, etc.”)

Here is my code

I had to turn unsafe to true… fixed.

markup:
  goldmark:
    renderer:
      unsafe: true
1 Like