Movatterモバイル変換


[0]ホーム

URL:


Jump to content
MediaWiki
Search

Module:Separated entries

From mediawiki.org
Module documentation
This module issubject to page protection. It is a highly visible module in use by a very large number of pages. Because vandalism or mistakes would affect many pages, and even trivial editing might cause substantial load on the servers, it isprotected from editing.
This Lua module is used on approximately 1,000 pages.

To avoid large-scale disruption and unnecessary server load, any changes to this module should first be tested in its/sandbox or/testcases subpages.The tested changes can then be added to this page in one single edit.

Please consider discussing any changes on thetalk page before implementing them.
Lua logoUsesLua:

Usage

[edit]

Module:Separated entries serves as a template front-end tomw.text.listToText. It takesany number of positional parameters andpieces them together with|separator=.|conjunction= can be optionally defined if a different separator is desired between the last and second last items. The starting positional parameter can be specified using|start=. Leading and trailing whitespace is stripped. To add deliberate leading and trailing whitespace, use the HTML escape code  for a space and
 for a "newline". Separated entries does not raise any errors by design.

{{#invoke:Separated entries|main|separator=...}}

Tests

[edit]

Module:Separated entries/testcases:Yes All tests passed.

NameExpectedActual
YestestMain
YestestBr
YestestComma
The abovedocumentation istranscluded fromModule:Separated entries/doc.(edit |history)
Editors can experiment in this module’s sandbox(create |mirror) andtestcases(edit) pages.
Subpages of this module.

-- This module takes positional parameters as input and concatenates them with-- an optional separator. The final separator (the "conjunction") can be-- specified independently, enabling natural-language lists like-- "foo, bar, baz and qux". The starting parameter can also be specified.localcompressSparseArray=require('Module:TableTools').compressSparseArraylocalp={}functionp._main(args)localseparator=args.separator-- Decode (convert to Unicode) HTML escape sequences, such as "&#32;" for space.andmw.text.decode(args.separator)or''localconjunction=args.conjunctionandmw.text.decode(args.conjunction)orseparator-- Discard values before the starting parameter.localstart=tonumber(args.start)ifstartthenfori=1,start-1doargs[i]=nilendend-- Discard named parameters.localvalues=compressSparseArray(args)returnmw.text.listToText(values,separator,conjunction)endlocalfunctionmakeInvokeFunction(separator,conjunction,first)returnfunction(frame)localargs=require('Module:Arguments').getArgs(frame)args.separator=separatororargs.separatorargs.conjunction=conjunctionorargs.conjunctionargs.first=firstorargs.firstreturnp._main(args)endendp.main=makeInvokeFunction()p.br=makeInvokeFunction('<br />')p.comma=makeInvokeFunction(mw.message.new('comma-separator'):plain())returnp
Retrieved from "https://www.mediawiki.org/w/index.php?title=Module:Separated_entries&oldid=4709219"
Category:
Hidden category:

[8]ページ先頭

©2009-2025 Movatter.jp