From ffb8ed4f9bbbf465632bd651b71377fa7d058dd3 Mon Sep 17 00:00:00 2001 From: Kristaps Dzonsons Date: Sun, 28 Sep 2014 11:33:15 +0000 Subject: Add support for some MathML elements and attributes in our HTML5. --- html.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'html.h') 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 }; -- cgit