I've done some looking around (as I've recently come across Joplin.. I was developing an application that basically did all the same things as Joplin in my spare time so I've decided to save myself the effort and just add the features on to Joplin that I'd like ). I've done some looking around at the regular plugin API as well as at how markdown plugins were originally implemented (via this issue) and I have a few questions.
Is it possible to add and install a markdown-it plugin via a regular Joplin plugin? If not, would it be a good idea to add support for it? Or should I look into adding a plugin like this via a pull request?
To clarify functionality I want to add, the application I was building was built around the flexmark(link removed and posted below.. new poster limit ) markdown parser. One of the plugins it has is the "attributes"(link removed and posted below.. new poster limit
) plugin, which would be the plugin I would recreate (after I take some time to make sure it doesn't already exist for markdown-it. This is just a preliminary investigation on my part to see what is possible inside of Joplin's ecosystem).
I was using my prototype application with that parser and plugin to add <span>
s with class attributes.. though the attributes plugin linked above can do more than that. Ultimately, I want to convert this:
{.classA} This is a <!---->test{.classB}. Look at it go!
It also supports this.{.classC}
And <!---->this{#this} though I've never used it much.
Into this:
<span class="classA">This is a <span class="classB">test</span>. Look at it go!</span>
<span class="classC">It also supports this.</span>
And <span id="this">this</span> though I've never used it much.
I've got a bunch of markdown (like three years worth) that use this pattern, in combination with custom CSS, to stylize certain blocks of text. I'd like to bring it over if possible. I'm also open to alternatives if there's other ways to get custom classes applied to blocks of text (though I don't care much for the admonition plugin's formatting..)
Any thoughts?