Hi!
As you can see in the images, shoutbox shows wrong time.
https://github.com/Schamper/nodebb-plugin-shoutbox
0_1528148526892_SHU_wpDakG.png
0_1528148528127_SHU_g6VDdG.png
0_1528148532188_SHU_z5pNW1.png
Hello !
I added KaTeX (for mathematical formula) with a plugin to parse many things on my nodebb forum (posts content, topics title, shoutbox messages...). It runs, as necessary, before any markdown conversion (using action:markdown.updateParserRules to update parser to use MarkdownItTexmath).
I have a problem to implement this also for the "About me" part in profile. It is not parsed like posts etc.
I tried to use the "filter:parse.aboutme" hook but it's not working. Here is the reason : my parse function converts LaTeX formulas into an html specific code and it must do it before the markdown filter:parse.aboutme call. But, when this last one runs, it breaks all. For example, <span>
is changed into </span>
...
Is there a way to parse the aboutme content before markdown and without losing the html code ?