brendano (owner)

Revisions

gist: 5350 Download_button fork
public
Description:
htmlescape
Public Clone URL: git://gist.github.com/5350.git
Embed All Files: show embed
htmlescape.pl #
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/env perl
 
while (<>) {
  s/&/&amp;/g;
  s/</&lt;/g;
  s/>/&gt;/g;
  print $_;
}