Please upgrade here. These earlier versions are no longer being updated and have security issues.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Disable @ mentions
khaqanerus
New
Is it possible to disable @ mentions? I want to enable MathJax on my forum and include formulas like
\begin{CD} K(X) @>{ch}>> H(X;\mathbb Q);\\ @VVV @VVV \\ K(Y) @>{ch}>> H(Y;\mathbb Q); \end{CD}
As you can see, Vanilla parses the @-mentions, and interferes with the LaTeX code so that the formula doesn't display properly. Can I change some configuration setting to disbale this?
0
Comments
sure
conf/config.php
add$Configuration['Garden']['Format']['Mentions'] = FALSE;
You can also disable hashtags with
$Configuration['Garden']['Format']['Hashtags']
grep is your friend.
Perfect, thanks! Is it also possible to disable escaping of the angle brackets < and >?
edit: never mind, that wasn't necessary, it's working now.