summaryrefslogtreecommitdiffstats
path: root/html.h
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2019-01-05 09:14:44 +0000
committerIngo Schwarze <schwarze@openbsd.org>2019-01-05 09:14:44 +0000
commitb039e0910fa465b73d66c37dc6f3c37a0be1e77e (patch)
tree3afc7a4af4cc7ca799ce86b128a2431db6c40aed /html.h
parentdf6a082de3c130efd8582d20d12e3dffa98ebd8f (diff)
downloadmandoc-b039e0910fa465b73d66c37dc6f3c37a0be1e77e.tar.gz
Now that the NODE_NOFILL flag in the syntax tree is accurate,
use it in the man(7) HTML formatter rather than keeping fill mode state locally, resulting in massive simplification (minus 40 LOC). Move the html_fillmode() state handler function to the html.c module such that both the man(7) and the roff(7) formatter (and in the future, also the mdoc(7) formatter) can use it. Give it a query mode, to be invoked with TOKEN_NONE.
Diffstat (limited to 'html.h')
-rw-r--r--html.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/html.h b/html.h
index 82920154..4adf7801 100644
--- a/html.h
+++ b/html.h
@@ -135,4 +135,5 @@ void print_eqn(struct html *, const struct eqn_box *);
void print_paragraph(struct html *);
void print_endline(struct html *);
+enum roff_tok html_fillmode(struct html *, enum roff_tok);
char *html_make_id(const struct roff_node *, int);