| Title | Can't use # as text |
| Date | 13-Feb-2006 18:47:00 EET |
| Version | ? |
| Submitter | 192.109.190.88 |
| Bug criticality | JSPWiki:LightBug![]() |
| Browser version | ? |
| Bug status | NotABug |
| PageProvider used | |
| Servlet Container | ? |
| Operating System | ? |
| URL | Intranet |
| Java version | ? |
Hi all,
i miss a verbatim statement. I want to describe the C-Preprocessor but the results are horrible. Is there no way to make a text section verbatim? Is it realy true that jspwiki can't show the charakter "#"?
Example:
- ifdef TEST1
uint8 index = 10;
- elif (defined TEST2)
uint8 index = 20;
- else
- error "Error"
- endif
Use the {{{ -section:
#ifdef TEST1
uint8 index = 10;
#elif (defined TEST2)
uint8 index = 20;
#else
# error "Error"
#endif
