mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-11-10 07:38:41 +00:00
bfe474042f
This commit is a limited implementation of the "active formatting elements" algorithm implemented in HTML5, which preserves certain formatting elements such as <a> and <b> when exiting or entering nodes. Signed-off-by: Edward Z. Yang <edwardzyang@thewritingpot.com>
6 lines
167 B
Plaintext
6 lines
167 B
Plaintext
--HTML--
|
|
<a href="foo.html"><h1>Foobar</h1></a>
|
|
--EXPECT--
|
|
<a href="foo.html"></a><h1><a href="foo.html">Foobar</a></h1><a href="foo.html"></a>
|
|
--# vim: et sw=4 sts=4
|