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