Page 1 of 1
How to strikethrough text in mantis comments?
Posted: 01 Jul 2015, 22:17
by Kunda
Trying to figure out how to strikethrough text
Re: How to strikethrough text in mantis comments?
Posted: 04 Jul 2015, 12:25
by atrol
There is a setting
Code: Select all
$g_html_valid_tags = 'p, li, ul, ol, br, pre, i, b, u, em, strong';
You could add strike (no longer supported in modern HTML5) and/or del to the tags.
After that you can enter text like <del>Strikethrough</del>
Re: How to strikethrough text in mantis comments?
Posted: 04 Jul 2015, 14:13
by Kunda
Thanks. You can mark this as solved.