diff options
author | 2011-09-18 10:25:28 +0000 | |
---|---|---|
committer | 2011-09-18 10:25:28 +0000 | |
commit | f8618d9964397ffcbec49fbf86801d8e517e51aa (patch) | |
tree | 60d86093f0e5ef2fa40fab6d112ce30a3e2806bc /usr.bin/mandoc/html.h | |
parent | Avoid potential 64-bit unaligned access on strict alignment architectures. (diff) | |
download | wireguard-openbsd-f8618d9964397ffcbec49fbf86801d8e517e51aa.tar.xz wireguard-openbsd-f8618d9964397ffcbec49fbf86801d8e517e51aa.zip |
sync to version 1.11.5:
adding an implementation of the eqn(7) language
by kristaps@
So far, only .EQ/.EN blocks are handled, in-line equations are not, and
rendering is not yet very pretty, but the parser is fairly complete.
Diffstat (limited to 'usr.bin/mandoc/html.h')
-rw-r--r-- | usr.bin/mandoc/html.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/mandoc/html.h b/usr.bin/mandoc/html.h index 10f9a3a5787..8e86973f2b0 100644 --- a/usr.bin/mandoc/html.h +++ b/usr.bin/mandoc/html.h @@ -1,4 +1,4 @@ -/* $Id: html.h,v 1.16 2011/05/29 21:22:18 schwarze Exp $ */ +/* $Id: html.h,v 1.17 2011/09/18 10:25:28 schwarze Exp $ */ /* * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv> * @@ -141,6 +141,7 @@ void print_stagq(struct html *, const struct tag *); void print_text(struct html *, const char *); void print_tblclose(struct html *); void print_tbl(struct html *, const struct tbl_span *); +void print_eqn(struct html *, const struct eqn *); void bufcat_fmt(struct html *, const char *, ...); void bufcat(struct html *, const char *); |