aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/regress/mdoc/blank/list.in
blob: 087575de5ecebd3175421eb7f629cb66d1fbd60b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
.\" $OpenBSD: list.in,v 1.2 2017/07/04 14:53:26 schwarze Exp $
.Dd $Mdocdate: July 4 2017 $
.Dt BLANK-LIST 1
.Os
.Sh NAME
.Nm blank-list
.Nd handling of blank lines in lists
.Sh DESCRIPTION
normal list:
.Bl -item -offset indent
.It
first item
.It
second item
.El
list with paragraphs:
.Bl -item -offset indent
.It
first item
.Pp
.It
second item
.Pp
.El
list with final paragraph:
.Bl -item -offset indent
.It
item
.El
.Pp
list with double paragraph:
.Bl -item -offset indent
.It
item
.Pp
.El
.Pp
normal compact list:
.Bl -item -compact -offset indent
.It
first item
.It
second item
.El
compact list with paragraphs:
.Bl -item -compact -offset indent
.It
first item
.Pp
.It
second item
.Pp
.El
compact list with final paragraph:
.Bl -item -compact -offset indent
.It
item
.El
.Pp
compact list with double paragraph:
.Bl -item -compact -offset indent
.It
item
.Pp
.El
.Pp
End.