Template:Comma separated entries/doc: Difference between revisions
From Guild of Archivists
m (1 revision imported) |
mNo edit summary |
||
(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
{{Documentation subpage}} | {{Documentation subpage}} | ||
{{Template shortcut|csv}} | {{Template shortcut|csv}} | ||
<!-- PLEASE ADD CATEGORIES WHERE INDICATED AT THE BOTTOM OF THIS PAGE --> | <!-- PLEASE ADD CATEGORIES WHERE INDICATED AT THE BOTTOM OF THIS PAGE --> | ||
Line 45: | Line 43: | ||
* {{tl|plainlist}} (same as above, but using regular unordered list markup) | * {{tl|plainlist}} (same as above, but using regular unordered list markup) | ||
* {{tl|flatlist}} (converts a regular unordered list into an inline list separated by interpuncts) | * {{tl|flatlist}} (converts a regular unordered list into an inline list separated by interpuncts) | ||
* {{tl|pagelist}} (formats a list of internal links as prose, using commas or "and" when appropriate) | * {{tl|pagelist}} (formats a list of internal links as prose, using commas or "and" when appropriate) | ||
* [[Module:Separated entries]], the Lua module used to realize this template. | * [[Module:Separated entries]], the Lua module used to realize this template. | ||
<includeonly> | <includeonly><!-- CATEGORIES BELOW THIS LINE, PLEASE: --> | ||
<!-- CATEGORIES BELOW THIS LINE, PLEASE: --> | |||
[[Category:List formatting and function templates]] | [[Category:List formatting and function templates]] | ||
</includeonly> |
Latest revision as of 06:49, 20 January 2018
This is a documentation subpage for Template:Comma separated entries. It contains usage information, categories and other content that is not part of the original template page. |
This template is used primarily in infoboxes to create a comma delimited collection of items, only adding the commas where needed.
For lists of items, without bullets, use {{plainlist}}.
Usage[edit source]
Typing:
{{comma separated entries|entry1|entry2|entry3|entry4|entry5|...}}
Results in:
- entry1, entry2, entry3, entry4, entry5, ...
Example[edit source]
Code | Result |
---|---|
{{comma separated entries|entry1|entry2|entry3|entry4}} |
entry1, entry2, entry3, entry4 |
{{comma separated entries| |entry2|entry3|entry4}} |
entry2, entry3, entry4 |
{{comma separated entries|entry1| |entry3|entry4}} |
entry1, entry3, entry4 |
{{comma separated entries|entry1|entry2| |entry4}} |
entry1, entry2, entry4 |
{{comma separated entries|entry1|entry2|entry3| }} |
entry1, entry2, entry3 |
{{comma separated entries|entry1| | | }} |
entry1 |
{{comma separated entries| |entry2| | }} |
entry2 |
{{comma separated entries| | |entry3| }} |
entry3 |
{{comma separated entries| | | |entry4}} |
entry4 |
{{comma separated entries| | | | }} |
|
{{comma separated entries|entry1|entry2|entry3|entry4|entry5|entry6}} |
entry1, entry2, entry3, entry4, entry5, entry6 |
See also[edit source]
- {{br separated entries}} (displays a list with an item per line)
- {{plainlist}} (same as above, but using regular unordered list markup)
- {{flatlist}} (converts a regular unordered list into an inline list separated by interpuncts)
- {{pagelist}} (formats a list of internal links as prose, using commas or "and" when appropriate)
- Module:Separated entries, the Lua module used to realize this template.