about summary refs log tree commit diff stats
path: root/htmlsafe.awk
blob: a49fe21f21bb2318c7f78fc3194ad556aec6fec6 (plain)
1
2
3
4
5
6
7
8
#!/bin/awk -f
{
	gsub(/&/, "\\&", $0)
	gsub(/</, "\\&lt;", $0)
	gsub(/>/, "\\&gt;", $0)
	print
}