Difference between revisions of "Sandbox"
From TestWiki
m (User:Msa11usec/Sandbox moved to Sandbox: Wrong page moved due to problems with / character in name.) |
(Attempt mixing MW & HTML) |
||
Line 1: | Line 1: | ||
− | <repeat table=" | + | == Mixing MW and HTML syntax == |
+ | |||
+ | {| class="datatable" | ||
+ | ! | ||
+ | ! colspan="2" | Hat details | ||
+ | |- | ||
+ | ! Name !! Type !! Size | ||
+ | |- | ||
+ | <repeat table="Hats"> | ||
+ | <tr> | ||
+ | <td>{{{Name}}}</td> | ||
+ | <td>{{{Hat}}}</td> | ||
+ | <td>{{{HatSize}}}</td> | ||
+ | </tr> | ||
</repeat> | </repeat> | ||
+ | |} | ||
+ | |||
+ | == All using HTML syntax == | ||
+ | |||
+ | <table class="datatable"> | ||
+ | <tr> | ||
+ | <th></th> | ||
+ | <th colspan="2">Hat details</th> | ||
+ | <tr> | ||
+ | <tr> | ||
+ | <th>Name</th><th>Type</th><th>Size</th> | ||
+ | </tr> | ||
+ | <repeat table="Hats"> | ||
+ | <tr> | ||
+ | <td>{{{Name}}}</td> | ||
+ | <td>{{{Hat}}}</td> | ||
+ | <td>{{{HatSize}}}</td> | ||
+ | </tr> | ||
+ | </repeat> | ||
+ | </table> |
Revision as of 16:02, 2 February 2011
Mixing MW and HTML syntax
Hat details | ||
---|---|---|
Name | Type | Size |
All using HTML syntax
Hat details | ||
---|---|---|
Name | Type | Size |