Hi,
I am working on a wiki-game where I would like to use ascii art.
I made a stylesheet to display ascii art, but the interpretation of the wikitext-formaetct shortcuts (’’ , __ , ) which are frequently used in ascii-pitures spoils the images.
.asciiart {width: 100%;white-space:pre;line-height:1em;font-family: monospace;-moz-transform-origin: left center;}
\rules only bold
''some bold text'' //some text italic//
The italic text won’t work anymore because the parser will only use the bold rule.
If you write
\rules except bold
''some bold text'' //some text italic//
The only element that won’t be parsed will be bold. All the other wiki formats will work. .. So IMO what you need is some \rules except bold underscore ...