diff options
author | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2017-03-07 13:09:09 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2017-03-07 13:09:09 +0000 |
commit | 9c259ff9d5a0e40aba3cf22230b44885510912ab (patch) | |
tree | 9436008a0d8f4a833548ca29a2d9b579bdcdd8b7 /regress | |
parent | 18121b772568646b1ea428d9b3430b1f347e5d6c (diff) |
implement .An -split and -nosplit
Diffstat (limited to 'regress')
-rw-r--r-- | regress/usr.bin/mandoc/mdoc/An/Makefile | 3 | ||||
-rw-r--r-- | regress/usr.bin/mandoc/mdoc/An/break.out_markdown | 47 | ||||
-rw-r--r-- | regress/usr.bin/mandoc/mdoc/Aq/Makefile | 4 | ||||
-rw-r--r-- | regress/usr.bin/mandoc/mdoc/Aq/author.out_markdown | 16 |
4 files changed, 67 insertions, 3 deletions
diff --git a/regress/usr.bin/mandoc/mdoc/An/Makefile b/regress/usr.bin/mandoc/mdoc/An/Makefile index b061bf761bf..f9d0b72e4eb 100644 --- a/regress/usr.bin/mandoc/mdoc/An/Makefile +++ b/regress/usr.bin/mandoc/mdoc/An/Makefile @@ -1,6 +1,7 @@ -# $OpenBSD: Makefile,v 1.2 2014/08/14 02:00:52 schwarze Exp $ +# $OpenBSD: Makefile,v 1.3 2017/03/07 13:09:08 schwarze Exp $ REGRESS_TARGETS = break LINT_TARGETS = break +MARKDOWN_TARGETS = break .include <bsd.regress.mk> diff --git a/regress/usr.bin/mandoc/mdoc/An/break.out_markdown b/regress/usr.bin/mandoc/mdoc/An/break.out_markdown new file mode 100644 index 00000000000..8605f693974 --- /dev/null +++ b/regress/usr.bin/mandoc/mdoc/An/break.out_markdown @@ -0,0 +1,47 @@ +AN-BREAK(1) - General Commands Manual + +# NAME + +**An-break** - line breaking of the author macro + +# DESCRIPTION + +inline is the default: +Kristaps, +Ingo, +and +Joerg. +empty +trailing +. + +split mode: +Kristaps +Ingo +Joerg + +empty +trailing +. + +# AUTHORS + +split mode is the default: +Kristaps +Ingo +Joerg + +empty +trailing +. + +inline: +Kristaps, +Ingo, +and +Joerg. +empty +trailing +. + +OpenBSD - February 5, 2015 diff --git a/regress/usr.bin/mandoc/mdoc/Aq/Makefile b/regress/usr.bin/mandoc/mdoc/Aq/Makefile index b20e59641c6..1d524cffadc 100644 --- a/regress/usr.bin/mandoc/mdoc/Aq/Makefile +++ b/regress/usr.bin/mandoc/mdoc/Aq/Makefile @@ -1,7 +1,7 @@ -# $OpenBSD: Makefile,v 1.3 2017/03/05 19:59:25 schwarze Exp $ +# $OpenBSD: Makefile,v 1.4 2017/03/07 13:09:08 schwarze Exp $ REGRESS_TARGETS = author empty UTF8_TARGETS = author empty -MARKDOWN_TARGETS = empty +MARKDOWN_TARGETS = author empty .include <bsd.regress.mk> diff --git a/regress/usr.bin/mandoc/mdoc/Aq/author.out_markdown b/regress/usr.bin/mandoc/mdoc/Aq/author.out_markdown new file mode 100644 index 00000000000..292eb5c573a --- /dev/null +++ b/regress/usr.bin/mandoc/mdoc/Aq/author.out_markdown @@ -0,0 +1,16 @@ +AQ-AUTHOR(1) - General Commands Manual + +# NAME + +**Aq-author** - angle brackets after an author name macro + +# DESCRIPTION + +Name <<addr>> Name <<addr>> + +# AUTHORS + +Name <<addr>> +Name <<addr>> + +OpenBSD - November 19, 2014 |