tbrowser compatibility: use numeric entity for ' - stagit - static git page generator
(HTM) git clone git://src.adamsgaard.dk/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 '
' 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
t@@ -47,7 +47,7 @@ xmlencode(FILE *fp, const char *s, size_t len)
switch(*s) {
case '<': fputs("<", fp); break;
case '>': fputs(">", fp); break;
- case '\'': fputs("'", fp); break;
+ case '\'': fputs("'" , fp); break;
case '&': fputs("&", fp); break;
case '"': fputs(""", fp); break;
default: fputc(*s, fp);
(DIR) diff --git a/stagit.c b/stagit.c
t@@ -248,7 +248,7 @@ xmlencode(FILE *fp, const char *s, size_t len)
switch(*s) {
case '<': fputs("<", fp); break;
case '>': fputs(">", fp); break;
- case '\'': fputs("'", fp); break;
+ case '\'': fputs("'", fp); break;
case '&': fputs("&", fp); break;
case '"': fputs(""", fp); break;
default: fputc(*s, fp);