[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Groff] non printable character as escape character
From: |
Ralph Corderoy |
Subject: |
Re: [Groff] non printable character as escape character |
Date: |
Sun, 10 Feb 2013 13:47:15 +0000 |
Hi Jérôme,
> I'm trying to use the ASCII escape character as the groff escape
> character, but it doesn't seem to work.
I don't think you can do that.
> Is there a solution for using a non printable character as the groff
> escape character ?
Yes, pick one of the allowed ones.
$ cat -A jerome
.ec @$
address@hidden@fPxyzzy$
.ec address@hidden
address@hidden@fPxyzzy$
.ec ^B$
foo^BfBbar^BfPxyzzy$
.ec ^[$
foo^[fBbar^[fPxyzzy$
$ nroff jerome | grep .
foobarxyzzy foofBbarfPxyzzy foobarxyzzy foofBbarfPxyzzy
$
See 10.1 in CSTR 54, http://troff.org/54.pdf. You can choose from ^B,
^C, ^E, ^F, and ^G.
Cheers, Ralph.