blob: a22f491494247fbd8fe550940925c4208ddaae77 (
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
|
.\" $OpenBSD: esct-mdoc.in,v 1.3 2017/07/04 14:53:23 schwarze Exp $
.Dd $Mdocdate$
.Dt SPACE-ESCT-MDOC 1
.Os
.Sh NAME
.Nm space-esct-mdoc
.Nd the t escape sequence in pages with mdoc macros
.Sh DESCRIPTION
In plain text:
.Pp
single tab
.Pp
single\tescape-t
.Pp
double tab
.Pp
double\t\tescape-t
.Pp
\tThis line starts with escape-t and comes close to the right margin.
\tThe next line starts with escape-t as well.
.Pp
In an unfilled display:
.Bd -unfilled -offset 3n
single tab
single\tescape-t
double tab
double\t\tescape-t
.Ed
.Pp
In a literal display:
.Bd -literal -offset 3n
single tab
single\tescape-t
double tab
double\t\tescape-t
.Ed
|