diff options
author | 2014-10-09 15:59:08 +0000 | |
---|---|---|
committer | 2014-10-09 15:59:08 +0000 | |
commit | a3108a0a5cf9406eb1a0c601e030ce036c88793d (patch) | |
tree | e267dc3cb3983fcb4f46e0d805fc621902979c60 /usr.bin/mandoc/html.h | |
parent | initial bits of MathML rendering for eqn(7) -Thtml; (diff) | |
download | wireguard-openbsd-a3108a0a5cf9406eb1a0c601e030ce036c88793d.tar.xz wireguard-openbsd-a3108a0a5cf9406eb1a0c601e030ce036c88793d.zip |
parse and render "from" and "to" clauses in eqn, and render matrices;
written by kristaps@ during EuroBSDCon
Diffstat (limited to 'usr.bin/mandoc/html.h')
-rw-r--r-- | usr.bin/mandoc/html.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/usr.bin/mandoc/html.h b/usr.bin/mandoc/html.h index f7b97d06f18..9e3f97c6e6e 100644 --- a/usr.bin/mandoc/html.h +++ b/usr.bin/mandoc/html.h @@ -1,4 +1,4 @@ -/* $OpenBSD: html.h,v 1.26 2014/10/09 15:49:09 schwarze Exp $ */ +/* $OpenBSD: html.h,v 1.27 2014/10/09 15:59:08 schwarze Exp $ */ /* * Copyright (c) 2008-2011, 2014 Kristaps Dzonsons <kristaps@bsd.lv> * @@ -63,6 +63,9 @@ enum htmltag { TAG_MTABLE, TAG_MTR, TAG_MTD, + TAG_MUNDEROVER, + TAG_MUNDER, + TAG_MOVER, TAG_MAX }; |