CVSROOT: /cvs
Module name: src
Changes by: [email protected] 2019/01/06 23:51:37
Modified files:
usr.bin/mandoc : html.c html.h man_html.c mdoc_html.c
mdoc_macro.c roff_html.c
regress/usr.bin/mandoc/char/unicode: invalid.out_html
regress/usr.bin/mandoc/mdoc/Bd: Makefile nf.in nf.out_ascii
nf.out_markdown
regress/usr.bin/mandoc/mdoc/Bf: Makefile
regress/usr.bin/mandoc/mdoc/D1: Makefile spacing.in
spacing.out_ascii
spacing.out_lint
spacing.out_markdown
regress/usr.bin/mandoc/mdoc/Rs: Makefile
regress/usr.bin/mandoc/mdoc/Sh: Makefile
regress/usr.bin/mandoc/roff/string: dotT.in dotT.out_ascii
dotT.out_html
dotT.out_markdown
dotT.out_utf8
Added files:
regress/usr.bin/mandoc/mdoc/Bd: nf.out_html paragraph.in
paragraph.out_ascii
paragraph.out_html
paragraph.out_markdown
regress/usr.bin/mandoc/mdoc/Bf: paragraph.in paragraph.out_ascii
paragraph.out_html
regress/usr.bin/mandoc/mdoc/D1: spacing.out_html
regress/usr.bin/mandoc/mdoc/Rs: paragraph.in paragraph.out_ascii
paragraph.out_html
paragraph.out_markdown
regress/usr.bin/mandoc/mdoc/Sh: paragraph.in paragraph.out_ascii
paragraph.out_html
paragraph.out_markdown
Log message:
Represent mdoc(7) .Pp (and .sp, and some SYNOPSIS and .Rs features)
by the <p> HTML element and use the html_fillmode() mechanism
for .Bd -unfilled, just like it was done for man(7) earlier, finally
getting rid both of the horrible <div class="Pp"></div> hack and
of the worst HTML syntax violations caused by nested displays.
Care is needed because in some situations, paragraphs have to remain
open across several subsequent macros, whereas in other situations,
they must get closed together with a block containing them.
Some implementation details include:
* Always close paragraphs before emitting HTML flow content.
* Let html_close_paragraph() also close <pre> for extra safety.
* Drop the old, now unused function print_paragraph().
* Minor adjustments in the top-level man(7) node formatter for symmetry.
* Bugfix: .Ss heads suspend no-fill mode, even though .Ss doesn't end it.
* Bugfix: give up on .Op semantic markup for now, see the comment.