browser compatibility: use numeric entity for ' - stagit - static git page generator
 (HTM) git clone git://git.codemadness.org/stagit
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit ab3fdd70430912751a9c5d00083a41f3251b6758
 (DIR) parent bba55b6bbcf35f9da67593a04d0b3daecbcd07b7
 (HTM) Author: Hiltjo Posthuma <hiltjo@codemadness.org>
       Date:   Sat, 15 Apr 2017 12:56:29 +0200
       
       browser compatibility: use numeric entity for '
       
       &apos; is a XHTML entity, browsers such as links, w3m, lynx and dillo
       don't support it.
       
       Diffstat:
         M stagit-index.c                      |       2 +-
         M stagit.c                            |       2 +-
       
       2 files changed, 2 insertions(+), 2 deletions(-)
       ---
 (DIR) diff --git a/stagit-index.c b/stagit-index.c
       @@ -47,7 +47,7 @@ xmlencode(FILE *fp, const char *s, size_t len)
                        switch(*s) {
                        case '<':  fputs("&lt;",   fp); break;
                        case '>':  fputs("&gt;",   fp); break;
       -                case '\'': fputs("&apos;", fp); break;
       +                case '\'': fputs("&#39;" , fp); break;
                        case '&':  fputs("&amp;",  fp); break;
                        case '"':  fputs("&quot;", fp); break;
                        default:   fputc(*s, fp);
 (DIR) diff --git a/stagit.c b/stagit.c
       @@ -248,7 +248,7 @@ xmlencode(FILE *fp, const char *s, size_t len)
                        switch(*s) {
                        case '<':  fputs("&lt;",   fp); break;
                        case '>':  fputs("&gt;",   fp); break;
       -                case '\'': fputs("&apos;", fp); break;
       +                case '\'': fputs("&#39;",  fp); break;
                        case '&':  fputs("&amp;",  fp); break;
                        case '"':  fputs("&quot;", fp); break;
                        default:   fputc(*s, fp);