summaryrefslogtreecommitdiffstats
path: root/html.h
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2014-09-28 11:33:15 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2014-09-28 11:33:15 +0000
commitffb8ed4f9bbbf465632bd651b71377fa7d058dd3 (patch)
tree5e846e729104107f5b32f07225084e95d12f1025 /html.h
parent7dc17b8921adee9171abb89dd4bf5a994182c0ae (diff)
downloadmandoc-ffb8ed4f9bbbf465632bd651b71377fa7d058dd3.tar.gz
Add support for some MathML elements and attributes in our HTML5.
Diffstat (limited to 'html.h')
-rw-r--r--html.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/html.h b/html.h
index 21c924b0..bd576ceb 100644
--- a/html.h
+++ b/html.h
@@ -50,6 +50,19 @@ enum htmltag {
TAG_CODE,
TAG_SMALL,
TAG_STYLE,
+ TAG_MATH,
+ TAG_MROW,
+ TAG_MI,
+ TAG_MO,
+ TAG_MSUP,
+ TAG_MSUB,
+ TAG_MSUBSUP,
+ TAG_MFRAC,
+ TAG_MSQRT,
+ TAG_MFENCED,
+ TAG_MTABLE,
+ TAG_MTR,
+ TAG_MTD,
TAG_MAX
};
@@ -64,6 +77,8 @@ enum htmlattr {
ATTR_ID,
ATTR_COLSPAN,
ATTR_CHARSET,
+ ATTR_OPEN,
+ ATTR_CLOSE,
ATTR_MAX
};