Please provide a way for TemplateData authors to produce other layouts for display, in additio to the table format. For example, if you have this data for Template:Note:
{ "params": { "message": { "label": "Message", "description": "The text of the note", "example": "Remember to brush your teeth every morning.", "type": "string", "required": true }, "small": { "label": "Small", "description": "Display in a smaller format", "example": "yes", "type": "boolean", "default": "no" } }
wouldn't it be awesome if the <templatedata> tag could generate wikitext docs and examples like this?
Usage: {{note | message=<The text of your note> (required string) | small=<Display in a smaller format> (optional boolean, default=no) }} Example: {{note | message=Remember to brush your teeth every morning | small=yes }}
Even better, if <templatedata> could display more than one of these formats automatically (say, the wikitext format followed by the table format), that would be ideal.
Justification: the table format is great, but it doesn't show an example of usage.