diff options
-rw-r--r-- | regress/usr.bin/mandoc/mdoc/Bl/Makefile | 6 | ||||
-rw-r--r-- | regress/usr.bin/mandoc/mdoc/Bl/multitag.in | 47 |
2 files changed, 50 insertions, 3 deletions
diff --git a/regress/usr.bin/mandoc/mdoc/Bl/Makefile b/regress/usr.bin/mandoc/mdoc/Bl/Makefile index 265e90b1588..7439062b8b4 100644 --- a/regress/usr.bin/mandoc/mdoc/Bl/Makefile +++ b/regress/usr.bin/mandoc/mdoc/Bl/Makefile @@ -1,7 +1,7 @@ -# $OpenBSD: Makefile,v 1.3 2010/04/12 22:57:05 schwarze Exp $ +# $OpenBSD: Makefile,v 1.4 2010/04/13 22:49:47 schwarze Exp $ -REGRESS_TARGETS=tag inset hang diag column nested -GROFF_TARGETS=tag inset hang diag column nested +REGRESS_TARGETS=tag inset hang diag column multitag nested +GROFF_TARGETS=tag inset hang diag column multitag nested REGRESS_TARGETS+=EMULTILIST ENOTYPE REGRESS_SLOW_TARGETS=EMULTILIST diff --git a/regress/usr.bin/mandoc/mdoc/Bl/multitag.in b/regress/usr.bin/mandoc/mdoc/Bl/multitag.in new file mode 100644 index 00000000000..4a1daef5b95 --- /dev/null +++ b/regress/usr.bin/mandoc/mdoc/Bl/multitag.in @@ -0,0 +1,47 @@ +.Dd $Mdocdate: April 13 2010 $ +.Dt BL-MULTITAG 1 +.Os +.Sh NAME +.Nm Bl-multitag +.Nd lists with multiple successive tags +.Sh DESCRIPTION +inset: +.Bl -inset +.It first +.It second +.It third +some text +.It fourth +.It fifth +more text +.El +tag: +.Bl -tag -width Ds +.It first +.It second +.It third +some text +.It fourth +.It fifth +more text +.El +inset compact: +.Bl -inset -compact +.It first +.It second +.It third +some text +.It fourth +.It fifth +more text +.El +tag compact: +.Bl -tag -width Ds -compact +.It first +.It second +.It third +some text +.It fourth +.It fifth +more text +.El |