Warning: You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in or
create an account, your edits will be attributed to your username, along with other benefits.
The edit can be undone.
Please check the comparison below to verify that this is what you want to do, and then publish the changes below to finish undoing the edit.
Latest revision |
Your text |
Line 2: |
Line 2: |
| This template takes a list of items with an optional name and formats them for insertion into a table. Used to process individual list from within the [[Template:NamedList]] template. | | This template takes a list of items with an optional name and formats them for insertion into a table. Used to process individual list from within the [[Template:NamedList]] template. |
|
| |
|
| Titled group with << >> list:
| | Examples: |
| <pre>{{NamedGroup|Title << item 1, item 2, item 3>>}}</pre> | | <pre>Title << item 1, item 2, item 3>></pre> |
| {{NamedGroup|Title << item 1, item 2, item 3>>}}
| | {{NamedGroup|Title << item 1, item 2, item 3>>}} |
| Group with title parameter and ~~ delimiter:
| | <pre>item 1, item 2, item 3 | Title</pre> |
| <pre>{{NamedGroup|item 1, item 2, item 3 | Title|~~}}</pre> | | {{NamedGroup|item 1, item 2, item 3 | Title}} |
| {{NamedGroup|item 1, item 2, item 3 | Title|~~}}
| | <pre>this list, has no title, will default to "list"</pre> |
| Group with no title and "-" list delimiter:
| | {{NamedGroup|this list, has no title, will default to "list"}} |
| <pre> {{NamedGroup|item 1, item2, item 3}}</pre> | |
| {{NamedGroup|item 1, item2, item 3|||-}}
| |
| <templatedata>
| |
| {
| |
| "params": {
| |
| "1": {
| |
| "description": "List of items in group (optionally << >> encapsed with group name in front)"
| |
| },
| |
| "2": {
| |
| "description": "Title of group (if not included in parameter 1)"
| |
| },
| |
| "3": {
| |
| "description": "Delimiter between group title and list of items"
| |
| },
| |
| "4": {
| |
| "description": "Delimiter between list items"
| |
| }
| |
| }
| |
| } | |
| </templatedata>
| |