blob: 103223f892e8a27d3b4d65a0b759a5b1bfb09140 (
plain)
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
|
.TH test 1 test test
.SH Section1
.\" double quotes in a quoted arguments
.B """"""
.\" Other similar ugly quotes
.BR """c""" " and " """posix""" .
.BR 1. " ""libvga.config"" options"
.SH 1. """libvga.config""" OPTIONS
.\" this works, but inserts a space between the quotes and the parenthesis
.B setlocale(lc_all, """""")
.\" However, I recommend to use these quotes:
.B setlocale(lc_all, \(dq\(dq)
.\" Lets be nasty
This:
.BI -help , -h , -? , /?
should be equivalent to:
.BI "-help", "-h", "-?", "/?"
This also:
.BI -help" a -h a -? a /?
should be equivalent to:
.BI "-help"""a "-h"a "-?"a "/?"
|