summaryrefslogtreecommitdiffstats
path: root/html.h
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2014-09-27 09:05:57 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2014-09-27 09:05:57 +0000
commitbd0e1539201fad6b2a3f492cabb69c5be5326b02 (patch)
tree8c593798613e6802382817e981d96e1f0a22ba10 /html.h
parentfe1e8ba3e2a185f91392bf28fc3076b5150d914b (diff)
downloadmandoc-bd0e1539201fad6b2a3f492cabb69c5be5326b02.tar.gz
Kick out "summary" attribute, which isn't HTML5.
Diffstat (limited to 'html.h')
-rw-r--r--html.h2
1 files changed, 0 insertions, 2 deletions
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,