mirror of
https://github.com/vichan-devel/vichan.git
synced 2024-12-12 15:51:17 +01:00
9 lines
230 B
Plaintext
9 lines
230 B
Plaintext
|
--INI--
|
||
|
HTML.AllowedElements = b,i,p,a
|
||
|
HTML.AllowedAttributes = a.href,*.id
|
||
|
--HTML--
|
||
|
<span>Not allowed</span><a class="mef" id="foobar">Remove id too!</a>
|
||
|
--EXPECT--
|
||
|
Not allowed<a>Remove id too!</a>
|
||
|
--# vim: et sw=4 sts=4
|