diff options
author | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2014-10-09 15:59:09 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2014-10-09 15:59:09 +0000 |
commit | 2b1f789565bc609eeef3249843b3b9100edb3138 (patch) | |
tree | 46a940cf7ca10f4e3bbba71e165f1de7114e516d /usr.bin/mandoc/html.h | |
parent | 6482ea11b26c03a6e6b7fe1bdedaf6bab66a00d9 (diff) |
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 }; |