diff options
Diffstat (limited to 'nocompile/bin/encode_html_entities')
-rwxr-xr-x | nocompile/bin/encode_html_entities | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/nocompile/bin/encode_html_entities b/nocompile/bin/encode_html_entities index 4cb1836..e2bcf30 100755 --- a/nocompile/bin/encode_html_entities +++ b/nocompile/bin/encode_html_entities @@ -1,4 +1,5 @@ #!/bin/sh sed "s/&/\&/g" \ | sed "s/</\</g" \ - | sed "s/>/\>/g" + | sed "s/>/\>/g" \ + | sed 's/"/\"/g' |