Question
My simple table
why is =CGI= invisible?
\=CGI\= gets rendered to <code /> instead of <code>CGI</code>
way way down in TWiki code you call CGI::code('string')
Here is the perl test file to prove its not your fault....
perltest.pl:
require CGI;
import CGI;
print CGI::code('CGIP');
print "\n";
print CGI::code('CGI');
print "\n";
0;
Environment
--
TerryRankine - 20 Sep 2007
Answer
If you answer a question - or someone answered one of your questions - please remember to edit the page and set the status to answered. The status selector is below the edit box.
Tracked in
Bugs:Item4683
--
PeterThoeny - 25 Sep 2007
CGI appears to be a reserved word. Try with a
<nop>:
| Table |
| =C<nop>GI= |
| =CGIF= |
Results in:
Not intuitive, but it may help you in the short term.
--
ArthurClemens - 25 Sep 2007