Markdown Monster
Markdown Monster Addin in the command line
Is it possible to have an addin affect the markdowntohtml output of mmcli? I have a custom render extension set up to alter the html output but when I export through mmcli the addin does not affect the output.
No, I just realized they don't.
Addins are not loaded into the CLI because they have dependencies on the UI interface that's not available in the CLI code.
I should take another look and see if that might be possible though, but I don't think it is.
+++ Rick ---
I've added support for this - Addins are now loaded in the mmCli, but only OnApplicationStart()
is fired.
If you implement a Render Extension, you can register it in OnApplicationStart()
and that will make it available for rendering in mmCli.
v3.3.19
+++ Rick ---