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.
little bug html formatter
jackmaessen
✭✭✭
i just noticed on my forum that there is a problem when using << and [< in the code.
Example: when i give this as input: << <u>4</u> >>
it shows me this after submit:<< <u>4 >>
instead of underlining the 4
A single < is no problem.
The same happens with this: [<] <u>4</u> [>]
It displays after submit: [<] <u>4 [>]
instead of underlining the 4
is there a way to fix this? Ofcourse i can change my input formatter but i prefer not to do it
Tagged:
0
Comments
what version of the 2.1 what formatter? thanks
grep is your friend.
2.1.9
I am using buttonbar only with html as input formatter
$Configuration['EnabledPlugins']['HtmLawed'] = 'HtmLawed
$Configuration['Garden']['InputFormatter'] = 'Html';
http://www.bioinformatics.org/phplabware/internal_utilities/htmLawed/htmLawedTest.php
try it
grep is your friend.
I suspect it will be left that way, to do it correctly in html anyway is
<< <u>4</u> >>
<< 4 >>
You should not use angle brackets in html except for tags. it supposed to convert valid html to safe html, invalid html it can do what it likes with, so long as it is safe html.
grep is your friend.
oke, i see..