]> git.cameronkatri.com Git - mandoc.git/blobdiff - html.h
Kick out "summary" attribute, which isn't HTML5.
[mandoc.git] / html.h
diff --git a/html.h b/html.h
index 62a4c3103eb7237fb9f050a444b5cb6fe4b34cec..d85848e96b907d86c0538761ee1740d3d4d8cbf5 100644 (file)
--- a/html.h
+++ b/html.h
@@ -1,4 +1,4 @@
-/*     $Id: html.h,v 1.57 2014/09/27 09:03:24 kristaps Exp $ */
+/*     $Id: html.h,v 1.58 2014/09/27 09:05:57 kristaps Exp $ */
 /*
  * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
  *
@@ -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,