Information:
Mediawiki: the lastest version 1.20
PHP: 5.3.10-1ubuntu3.4
OS: Ubuntu 12.04
I've create a template named box, which will set both color and background-color to a paragraph of text, the template is like below:
<includeonly><div class="box" style="background-color:{{{3|transparent}}};color:{{{2|inherit}}};">{{{1}}}</div></includeonly><noinclude>
I want to use like below:
{{Box
|The Zen of Python, by Tim Peters
Beautiful is better than ugly.
Explicit is better than implicit.
Simple is better than complex.
Complex is better than complicated.
Flat is better than nested.
Sparse is better than dense.
Readability counts.
Special cases aren't special enough to break the rules.
Although practicality beats purity.
Errors should never pass silently.
Unless explicitly silenced.
In the face of ambiguity, refuse the temptation to guess.
There should be one-- and preferably only one --obvious way to do it.
Although that way may not be obvious at first unless you're Dutch.
Now is better than never.
Although never is often better than *right* now.
If the implementation is hard to explain, it's a bad idea.
If the implementation is easy to explain, it may be a good idea.
Namespaces are one honking great idea -- let's do more of those!
|white
|black
}}
But the result is, the color and bg color doesn't set to the paragraph. Then I lookup the html code, the style attributer of div is very strange:
<div class="box" style="background-color:black ;color:white ;">The Zen of Python, by Tim Peters .... </div>
The value of parameter contains an extra space(before the colon), so the css is invalid.
I want to known why does it?