Hash : cdaf657f Author : Date : 2025-05-09T23:02:32
html: Don't escape < and > when serializing attribute values Align with HTML5. This will break some test suites.
Download
1 2 3 4 5 6 7 8
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd"> <html> <body> <a href="index.cgi?a&lt=1&gt=2">link</a> <a href="index.cgi?a&lta&gta">link</a> <a href="index.cgi?a<>">link</a> </body> </html>