This module contains a number of functions that use random numbers. It can output random numbers, select a random item from a list, and reorder lists randomly. The randomly reordered lists can be output inline, or as various types of ordered and unordered lists. The available functions are outlined in more detail below.

Number[edit]

The number function outputs a random number.

((#invoke:random|number|m|n|same=yes))

The arguments m and n may be omitted, but if specified must be convertible to integers.

Examples (refresh)

The documentation for this function is partly taken from the Scribunto Lua reference manual, which is in turn based on the Lua 5.1 Reference Manual, available under the MIT License.

Date[edit]

The date function outputs a random date.

((#invoke:random|date|timestamp1|timestamp2|format=date format|same=yes))

Examples (refresh)

Item[edit]

The item function outputs a random item from a list.

((#invoke:random|item|list item 1|list item 2|list item 3|...|same=yes))

If the |same= parameter is set to "yes", "y", "true", or "1", the same item is returned for each module call on a given page.

Example (refresh)

List[edit]

The list function outputs a list in a random order.

((#invoke:random|list|list item 1|list item 2|list item 3|...|sep=separator|limit=number of items to display|same=yes))

Named parameters

Possible separator values
Code Output
dot  ·
pipe |
comma ,
tpt-languages ⧼tpt-languages-separator⧽
space a space
newline a newline character
any other value other values are used without modification

You cannot input spaces directly to the |sep= parameter due to limitations in MediaWiki's template syntax. However, it is possible to work around this by using HTML entities. You can use   to represent a normal space, and   to represent a non-breaking space.

Examples (refresh)

Text list[edit]

The text_list function outputs a list in a random order, text-style. In other words, it is like the list function, but with a different separator before the last item.

((#invoke:random|text_list|list item 1|list item 2|list item 3|...|sep=separator|conj=conjunction|limit=number of items to display|same=yes))

The separator can be specified with either the |sep= or |separator= parameters; its default value is ", ". The conjunction can be specified with either the |conj= or |conjunction= parameters; its default value is " and ". The separator and the conjunction can be specified with the same values as the separator in the list function.

The maximum number of list items to display can be set with the |limit= parameter. The lowest possible is 0 and the highest possible is the length of the list.

If the |same= parameter is set to "yes", "y", "true", or "1", the list order is the same for each module call on a given page.

Examples (refresh)

HTML lists[edit]

If you wish to output an HTML list in a random order, you can choose between five different functions: bulleted_list, unbulleted_list, horizontal_list, ordered_list, and horizontal_ordered_list. These functions all use Module:List.

Function name Produces Example code Example output (refresh)
bulleted_list Bulleted lists ((#invoke:random|bulleted_list|egg|sausage|spam))
  • spam
  • egg
  • sausage
unbulleted_list Unbulleted lists ((#invoke:random|unbulleted_list|egg|sausage|spam))
  • spam
  • sausage
  • egg
horizontal_list Horizontal bulleted lists ((#invoke:random|horizontal_list|egg|sausage|spam))
  • spam
  • sausage
  • egg
ordered_list Ordered lists (numbered lists and alphabetical lists) ((#invoke:random|ordered_list|egg|sausage|spam))
  1. spam
  2. sausage
  3. egg
horizontal_ordered_list Horizontal ordered lists ((#invoke:random|horizontal_ordered_list|egg|sausage|spam))
  1. sausage
  2. spam
  3. egg
Basic usage
((#invoke:random|function|list item 1|list item 2|list item 3|...|limit=number of items to display|same=yes))
All parameters
((#invoke:random|function
|first item|second item|third item|...
|start           = start number for ordered lists
|type            = type of marker for ordered lists
|list_style_type = type of marker for ordered lists (uses CSS)
|class           = class
|style           = style
|list_style      = style for the list
|item_style      = style for all list items
|item_style1     = style for the first list item |item_style2 = style for the second list item |...
|indent          = indent for horizontal lists
))

The maximum number of list items to display can be set with the |limit= parameter. The lowest possible is 0 and the highest possible is the length of the list.

If the |same= parameter is set to "yes", "y", "true", or "1", the list order is the same for each module call on a given page.

Please see Module:List for a full explanation of the other parameters.

Retrieved from "https://en.wikipedia.org/w/index.php?title=Module:Random/doc&oldid=1093108712"