diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2017-03-07 13:09:27 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2017-03-07 13:09:27 +0000 |
commit | 54c20ea66e3a8b5f2d1f39bef82737cd2afce2a4 (patch) | |
tree | e1af7f57036228519ad3ef15be7da1dd0f6f7339 /regress | |
parent | b8ef179ea90844da1a88b01ec79d02fe12cf0d23 (diff) | |
download | mandoc-54c20ea66e3a8b5f2d1f39bef82737cd2afce2a4.tar.gz |
implement .An -split and -nosplit
Diffstat (limited to 'regress')
-rw-r--r-- | regress/mdoc/An/Makefile | 1 | ||||
-rw-r--r-- | regress/mdoc/An/break.out_markdown | 47 | ||||
-rw-r--r-- | regress/mdoc/Aq/Makefile | 2 | ||||
-rw-r--r-- | regress/mdoc/Aq/author.out_markdown | 16 |
4 files changed, 65 insertions, 1 deletions
diff --git a/regress/mdoc/An/Makefile b/regress/mdoc/An/Makefile index b061bf76..da42571a 100644 --- a/regress/mdoc/An/Makefile +++ b/regress/mdoc/An/Makefile @@ -2,5 +2,6 @@ REGRESS_TARGETS = break LINT_TARGETS = break +MARKDOWN_TARGETS = break .include <bsd.regress.mk> diff --git a/regress/mdoc/An/break.out_markdown b/regress/mdoc/An/break.out_markdown new file mode 100644 index 00000000..8605f693 --- /dev/null +++ b/regress/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/mdoc/Aq/Makefile b/regress/mdoc/Aq/Makefile index ac59b314..d0bcc85a 100644 --- a/regress/mdoc/Aq/Makefile +++ b/regress/mdoc/Aq/Makefile @@ -2,6 +2,6 @@ REGRESS_TARGETS = author empty UTF8_TARGETS = author empty -MARKDOWN_TARGETS = empty +MARKDOWN_TARGETS = author empty .include <bsd.regress.mk> diff --git a/regress/mdoc/Aq/author.out_markdown b/regress/mdoc/Aq/author.out_markdown new file mode 100644 index 00000000..292eb5c5 --- /dev/null +++ b/regress/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 |