2
0
mirror of https://git.zx2c4.com/cgit/ synced 2024-11-04 06:00:44 +00:00

filters: apply HTML escaping

http://www.w3.org/International/questions/qa-escapes#use
This commit is contained in:
Lazaros Koromilas 2015-07-15 15:53:12 +03:00 committed by Jason A. Donenfeld
parent de83de276b
commit 13c2d3df04

View File

@ -1,4 +1,4 @@
#!/bin/sh
echo "<pre>"
cat
sed "s|&|\\&amp;|g;s|'|\\&apos;|g;s|\"|\\&quot;|g;s|<|\\&lt;|g;s|>|\\&gt;|g"
echo "</pre>"