redmine_drawio
redmine_drawio copied to clipboard
Drawio enables math mode
When Plugin redmine_drawio is enabled, I see unwanted math formated symbols:
The description contains this text:
Cable-precheck Test:
> 1. `c.generic_test_check.get_names() #Display all test names`
and leads to this:
Hi @ksingvo, I've done some check and yes, the plugin loads the MathJax library used by DrawIO.
But the library is optional (and usually disabled), simply disable its loading in the plugin configuration panel (Adminitrations
-> Plugins
-> Redmine Drawio plugin
-> Configuration
.
I've found a way that can be used to disable the Mathjax rendering, enclose the text in a div
with class no-mathjax
.
Your example become:
Cable-precheck Test:<div class="no-mathjax">
> 1. `c.generic_test_check.get_names() #Display all test names`
</div>
Not elegant but can be used to disable Mathjax as required.
Yes, wow. Never hat such a solution in mind.
That's a good working solution for me. --> Issue can be closed with solution given.
Thank you.