A mediawiki question. At work, I have some text that looks something like:
*some text {{template}} *some text
etc. I would like to make this entire block of text turn grey. Ideally, I would do it like this:
{{grey| *some text {{template}} *some text }}
But this doesn't work - the parser doesn't like it (afaik). With various testing, I came up with a template like this:
{{grey(}} *some text {{template}} *some text {{)}}
where {{grey(}} opens a table with certain character formatting, creates a cell, and {{)}} closes the cell and table. Just applying the style directly to the text didn't work. Even using divs and spans didn't work.
Is there any remotely elegant way of doing all this?
Steve