Replies: 2 comments
-
I assume you meant this to say But it sounds like you need to recursively parse the caption contents, probably with the InlinesOnlyExtension extension enabled. |
Beta Was this translation helpful? Give feedback.
0 replies
-
This is what I have:
Should text inside the Text node, not get parsed by the markdown parser? That seems to be the case. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have a extension I created that creates a banner, it has 3 renderers: root banner element, banner image, and banner caption. The syntax is
~[caption](image_url)
. Everything works as I expect, except for one thing, how can I get markdown to parse in the caption. Such as~[_test_](image_url)
. It's simply outputting "test" as the caption instead of converted markdown.I've looked through the docs, but maybe I missed something.
Beta Was this translation helpful? Give feedback.
All reactions