diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2014-09-28 11:33:15 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2014-09-28 11:33:15 +0000 |
commit | ffb8ed4f9bbbf465632bd651b71377fa7d058dd3 (patch) | |
tree | 5e846e729104107f5b32f07225084e95d12f1025 /html.h | |
parent | 7dc17b8921adee9171abb89dd4bf5a994182c0ae (diff) | |
download | mandoc-ffb8ed4f9bbbf465632bd651b71377fa7d058dd3.tar.gz |
Add support for some MathML elements and attributes in our HTML5.
Diffstat (limited to 'html.h')
-rw-r--r-- | html.h | 15 |
1 files changed, 15 insertions, 0 deletions
@@ -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 }; |