diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2018-12-31 07:08:12 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2018-12-31 07:08:12 +0000 |
commit | c307b01e3d5709e7d34106b6fe8e98b468bf33f8 (patch) | |
tree | 939b2a1acb043c38c2dacc70855f028e163b6f42 /roff_html.c | |
parent | c0cea6817b9d23d8e5e4a752fc1dff8dfb604cdc (diff) | |
download | mandoc-c307b01e3d5709e7d34106b6fe8e98b468bf33f8.tar.gz |
Move parsing of the .nf and .fi (fill mode) requests from the man(7)
parser to the roff(7) parser. As a side effect, .nf and .fi are
now also parsed in mdoc(7) input, though the mdoc(7) formatters
still ignore most of their effect.
Diffstat (limited to 'roff_html.c')
-rw-r--r-- | roff_html.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/roff_html.c b/roff_html.c index fc0f2e30..809e9ff8 100644 --- a/roff_html.c +++ b/roff_html.c @@ -38,9 +38,11 @@ static void roff_html_pre_sp(ROFF_HTML_ARGS); static const roff_html_pre_fp roff_html_pre_acts[ROFF_MAX] = { roff_html_pre_br, /* br */ roff_html_pre_ce, /* ce */ + roff_html_pre_br, /* fi */ roff_html_pre_ft, /* ft */ NULL, /* ll */ NULL, /* mc */ + roff_html_pre_br, /* nf */ NULL, /* po */ roff_html_pre_ce, /* rj */ roff_html_pre_sp, /* sp */ |