From bd0e1539201fad6b2a3f492cabb69c5be5326b02 Mon Sep 17 00:00:00 2001 From: Kristaps Dzonsons Date: Sat, 27 Sep 2014 09:05:57 +0000 Subject: Kick out "summary" attribute, which isn't HTML5. --- html.h | 2 -- 1 file changed, 2 deletions(-) (limited to 'html.h') diff --git a/html.h b/html.h index e4bea8cc..5494c813 100644 --- a/html.h +++ b/html.h @@ -64,7 +64,6 @@ enum htmlattr { ATTR_STYLE, ATTR_WIDTH, ATTR_ID, - ATTR_SUMMARY, ATTR_ALIGN, ATTR_COLSPAN, ATTR_CHARSET, @@ -103,7 +102,6 @@ struct htmlpair { #define PAIR_CLASS_INIT(p, v) PAIR_INIT(p, ATTR_CLASS, v) #define PAIR_HREF_INIT(p, v) PAIR_INIT(p, ATTR_HREF, v) #define PAIR_STYLE_INIT(p, h) PAIR_INIT(p, ATTR_STYLE, (h)->buf) -#define PAIR_SUMMARY_INIT(p, v) PAIR_INIT(p, ATTR_SUMMARY, v) enum htmltype { HTML_HTML_4_01_STRICT, -- cgit