Custom fenced extension issues #637
-
I've been working recently on building an extension to add alerts for a documentation site I'm building. I started with fenced code blocks as an example as that's the syntax I want to use:
The only way I was able to get this working was to set Everything is actually working now, but I want the contents of the alert to be parsed as normal Markdown so I can add links and put some basic styling in, but nothing I've done gets that working. I've looked at other parsers/renderers and tried a bunch of things from those classes, but nothing has worked so far. Is there something I'm missing to get that working? Is someone able to point me in the right direction? Here's the work I've done so far on the extension: https://gist.github.com/agentphoenix/64d48899d56b892011832dcce0b28af8 |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
I ended up figuring out what I was doing wrong. I just had to push the remaining contents through the |
Beta Was this translation helpful? Give feedback.
I ended up figuring out what I was doing wrong. I just had to push the remaining contents through the
renderInlines
and everything started working!