Decode more Unicode quotes - gophercgis - Collection of gopher CGI/DCGI for geomyidae
 (HTM) hg clone https://bitbucket.org/iamleot/gophercgis
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) changeset 91b8039da1ac9211583b2e54a2fb4147ca283a09
 (DIR) parent dae9e4abfe7af0c07b25bd6c60cebf6208755a19
 (HTM) Author: Leonardo Taccari <iamleot@gmail.com>
       Date:   Wed,  2 Jan 2019 12:53:51 
       
       Decode more Unicode quotes
       
       Diffstat:
        ilmanifesto/edition.dcgi |  5 ++++-
        1 files changed, 4 insertions(+), 1 deletions(-)
       ---
       diff -r dae9e4abfe7a -r 91b8039da1ac ilmanifesto/edition.dcgi
       --- a/ilmanifesto/edition.dcgi  Wed Jan 02 11:58:13 2019 +0100
       +++ b/ilmanifesto/edition.dcgi  Wed Jan 02 12:53:51 2019 +0100
       @@ -15,7 +15,10 @@
        function decode(s)
        {
               gsub(/&#8217;/, "\047", s);
       -        gsub("\\|", "\\|", s)
       +       gsub(/&#8220;/, "\042", s);
       +       gsub(/&#8221;/, "\042", s);
       +
       +       gsub("\\|", "\\|", s)
        
               return s
        }