diff options
author | Joerg Sonnenberger <joerg@netbsd.org> | 2010-05-16 20:39:20 +0000 |
---|---|---|
committer | Joerg Sonnenberger <joerg@netbsd.org> | 2010-05-16 20:39:20 +0000 |
commit | 224230fa313f960b4300b3d7266313556f9e2781 (patch) | |
tree | e4eca3ebee44f3da434a1d7239b96414f806ee52 /regress | |
parent | 76918e2e1d5b60e535b8c4ee567f001fa667bc1a (diff) | |
download | mandoc-224230fa313f960b4300b3d7266313556f9e2781.tar.gz |
Add a basic regression test for .Bl -bullet and the various interactions
with .Bd.
Diffstat (limited to 'regress')
-rw-r--r-- | regress/mdoc/Bl/bullet-basic.in | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/regress/mdoc/Bl/bullet-basic.in b/regress/mdoc/Bl/bullet-basic.in new file mode 100644 index 00000000..34244678 --- /dev/null +++ b/regress/mdoc/Bl/bullet-basic.in @@ -0,0 +1,64 @@ +.Dd May 16, 2010 +.Dt BL-BULLET-BASIC 1 +.Os +.Sh NAME +.Nm Bl-bullet-basic +.Nd tests bullet lists +.Sh DESCRIPTION +.Ss Line breaks in items: +.Bl -bullet -width 5n +.It +x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x +x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x +.El +.Ss Nesting of ".Bl -bullet" and empty ".Bd -literal" +.Bl -bullet +.It +.Bd -literal +.Ed +y +.It +.El +.Ss Nesting of ".Bl -bullet" and ".Bd -literal": +.Bl -bullet +.It +.Bd -literal +xy +.Ed +y +.It +.El +.Ss Nesting of ".Bl -bullet" and empty ".Bd -compact -literal": +.Bl -bullet +.It +.Bd -literal -compact +.Ed +y +.It +.El +.Ss Nesting of ".Bl -bullet" and ".Bd -compact -literal": +.Bl -bullet +.It +.Bd -literal -compact +xy +.Ed +y +.It +.El +.Ss Nesting of ".Bl -bullet -compact" and empty ".Bd -compact -literal": +.Bl -bullet -compact +.It +.Bd -literal -compact +.Ed +y +.It +.El +.Ss Nesting of ".Bl -bullet -compact" and ".Bd -compact -literal": +.Bl -bullet -compact +.It +.Bd -literal -compact +xy +.Ed +y +.It +.El |