]> git.cameronkatri.com Git - mandoc.git/blob - regress/roff/ds/quoting.in
Let roff_getname() end the roff identifier at a tab character
[mandoc.git] / regress / roff / ds / quoting.in
1 .\" $OpenBSD: quoting.in,v 1.3 2017/07/04 14:53:27 schwarze Exp $
2 .Dd $Mdocdate: July 4 2017 $
3 .Dt DS-QUOTING 1
4 .Os
5 .Sh NAME
6 .Nm ds-quoting
7 .Nd quote handling by the define string request
8 .Sh DESCRIPTION
9 .ds foo initial definition
10 no quoting: \*[foo]
11 .br
12 .ds foo redefinition
13 still no quoting: \*[foo]
14 .br
15 .ds foo "string value
16 leading quotes: \*[foo]
17 .br
18 .ds foo "string value"
19 leading and trailing quotes: \*[foo]
20 .br
21 .ds foo "string" value
22 leading and middle quotes: \*[foo]
23 .br
24 .ds foo 'string value"
25 leading apostrophe, trailing quotes: \*[foo]
26 .br
27 .ds foo string value"
28 leading blank, trailing quotes: \*[foo]
29 .br
30 .ds foo
31 empty string: x\*[foo]x
32 .br
33 end of test document