summaryrefslogtreecommitdiffstats
path: root/usr.bin/mandoc/man_html.c
diff options
context:
space:
mode:
authorschwarze <schwarze@openbsd.org>2010-10-15 20:45:03 +0000
committerschwarze <schwarze@openbsd.org>2010-10-15 20:45:03 +0000
commit69615b3529bd47f73a5c431c091fb8baf554096c (patch)
tree2e5629aa7c957885af7c81d74231a8431075c39f /usr.bin/mandoc/man_html.c
parentRemove redundant definition (diff)
downloadwireguard-openbsd-69615b3529bd47f73a5c431c091fb8baf554096c.tar.xz
wireguard-openbsd-69615b3529bd47f73a5c431c091fb8baf554096c.zip
Minimal glue to integrate tbl into the mandoc man(7) parser and formatter.
The output dosn't look nice yet, escape handling is still missing, but will follow soon. "move forward aggressively :-)" deraadt@
Diffstat (limited to 'usr.bin/mandoc/man_html.c')
-rw-r--r--usr.bin/mandoc/man_html.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/mandoc/man_html.c b/usr.bin/mandoc/man_html.c
index b127639e546..c2852273b81 100644
--- a/usr.bin/mandoc/man_html.c
+++ b/usr.bin/mandoc/man_html.c
@@ -1,4 +1,4 @@
-/* $Id: man_html.c,v 1.18 2010/07/25 18:05:54 schwarze Exp $ */
+/* $Id: man_html.c,v 1.19 2010/10/15 20:45:03 schwarze Exp $ */
/*
* Copyright (c) 2008, 2009, 2010 Kristaps Dzonsons <kristaps@bsd.lv>
*
@@ -113,6 +113,8 @@ static const struct htmlman mans[MAN_MAX] = {
{ man_literal_pre, NULL }, /* Ve */
{ man_ign_pre, NULL }, /* AT */
{ man_in_pre, NULL }, /* in */
+ { NULL, NULL }, /* TS */
+ { NULL, NULL }, /* TE */
};