Template talk:Cmduser
Template breaks on lines with =
If I use something like {{cmduser|./configure foo=bar bix=baz}}, the page displays only {{{1}}}. --Zhenech 12:44, 18 February 2007 (CET)
3 possible solutions
Wikipedia suggests for Templates
NR=somecode with =
where NR is the Number of the Parameter passed
i.e.
{{cmduser|1=./configure foo=bar bix=baz}}
{{sometemplate|1=./configure foo=bar bix=baz|2=foobarit=Stone that cannot be recognized anymore}}
wrap a nowiki around it like
{{cmduser|<nowiki>./configure foo=bar bix=baz</nowiki>}}
or use the html ascii version for the escaped chars:
= for =
| for |
or in the case of cmduser: we could integrate the nowiki thing in the template
--Mcgiver 16:43, 18 February 2007 (CET)