In MW 1.30, given the following simple template that I use in documenting templates:
Template:parameter
<onlyinclude>; {{{name|{{{1|}}}}}} : {{{description|{{{2|}}}}}}</onlyinclude>
[[category:template documentation templates]]If I include in a page:
{{parameter|publication_date|for example: <kbd dir="ltr">2016-11-1</kbd>}}then the value of {{{2}}} is omitted from the output. Not only the text within <kbd> tag, but everything including the string "for example:" is omitted.
But if I use a named parameter then it works as expected:
{{parameter|publication_date|description=for example: <kbd dir="ltr">2016-11-1</kbd>}}note: If you wonder about this specific example and the need for LTR, it's because my actual case is in Arabic and I sometimes need to enforce LTR because of BiDi blues.