in reply to Brackets in the CB.
I don't know whether either was incorporated in the Everything engine, but one of the things that showed up in that thread was the proposed handler:
for \, which would allow you to forget all of the special escapes and just backslash any special characters you wanted.sub { my $t_ref = shift; if ($$t_ref =~ /\G([&\[\]<>\\])/g) { return encode_entities($1); } }
I think that is a better answer to the problem that you propose, and I still want the feature. Perhaps some day I will be motivated enough to download the Everything engine and do it myself...
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re (tilly) 1: Brackets in the CB.
by Chmrr (Vicar) on Jan 11, 2002 at 07:28 UTC | |
by tilly (Archbishop) on Jan 11, 2002 at 07:48 UTC |