aboutsummaryrefslogtreecommitdiffstatshomepage
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
commit6f603eaa29c0c620155a4676d14e514aae64f7fc (patch)
treec6b6e2600247d29205039b3eae8679dfca1f5ae2 /html.h
parentdcd90e7955626a38ed974eeba3b599fb534e7b62 (diff)
downloadmandoc-6f603eaa29c0c620155a4676d14e514aae64f7fc.tar.gz
mandoc-6f603eaa29c0c620155a4676d14e514aae64f7fc.tar.zst
mandoc-6f603eaa29c0c620155a4676d14e514aae64f7fc.zip
Kick out "summary" attribute, which isn't HTML5.
Diffstat (limited to 'html.h')
-rw-r--r--html.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/html.h b/html.h
index 62a4c310..d85848e9 100644
--- 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,