-rw-r--r-- | html.c | 18 |
1 files changed, 9 insertions, 9 deletions
@@ -97,3 +97,3 @@ void html_txt(const char *txt) if (c=='<' || c=='>' || c=='&') { - write(htmlfd, txt, t - txt); + html_raw(txt, t - txt); if (c=='>') @@ -118,3 +118,3 @@ void html_ntxt(int len, const char *txt) if (c=='<' || c=='>' || c=='&') { - write(htmlfd, txt, t - txt); + html_raw(txt, t - txt); if (c=='>') @@ -130,3 +130,3 @@ void html_ntxt(int len, const char *txt) if (t!=txt) - write(htmlfd, txt, t - txt); + html_raw(txt, t - txt); if (len<0) @@ -141,3 +141,3 @@ void html_attr(const char *txt) if (c=='<' || c=='>' || c=='\'' || c=='\"') { - write(htmlfd, txt, t - txt); + html_raw(txt, t - txt); if (c=='>') @@ -165,4 +165,4 @@ void html_url_path(const char *txt) if (e && c!='+' && c!='&' && c!='+') { - write(htmlfd, txt, t - txt); - write(htmlfd, e, 3); + html_raw(txt, t - txt); + html_raw(e, 3); txt = t+1; @@ -182,4 +182,4 @@ void html_url_arg(const char *txt) if (e) { - write(htmlfd, txt, t - txt); - write(htmlfd, e, 3); + html_raw(txt, t - txt); + html_raw(e, 3); txt = t+1; @@ -251,3 +251,3 @@ int html_include(const char *filename) while((len = fread(buf, 1, 4096, f)) > 0) - write(htmlfd, buf, len); + html_raw(buf, len); fclose(f); |