Hi all,
I can't flag a post two o more times after the first resolution.
After I have solved a segnalation (eg. flagged post for abuse) the user do not see again the option "flag this post".
Only a time it was permit (two segnalations) but i don't understand if it was a particular scenario (if i have performed some action that i don't remember) or it is a nodeBB bug.
I manage the post flagged setting its status to solved after my moderation. What do I do to permit another segnaltion on the same post?
Could yuo help me? Thanks
Parse aboutme problem
-
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 ?