diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2014-09-27 09:05:57 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2014-09-27 09:05:57 +0000 |
commit | bd0e1539201fad6b2a3f492cabb69c5be5326b02 (patch) | |
tree | 8c593798613e6802382817e981d96e1f0a22ba10 /html.h | |
parent | fe1e8ba3e2a185f91392bf28fc3076b5150d914b (diff) | |
download | mandoc-bd0e1539201fad6b2a3f492cabb69c5be5326b02.tar.gz |
Kick out "summary" attribute, which isn't HTML5.
Diffstat (limited to 'html.h')
-rw-r--r-- | html.h | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -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, |