<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki42.maceys.net/index.php?action=history&amp;feed=atom&amp;title=Module%3ASeparated_entries</id>
	<title>Module:Separated entries - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://wiki42.maceys.net/index.php?action=history&amp;feed=atom&amp;title=Module%3ASeparated_entries"/>
	<link rel="alternate" type="text/html" href="https://wiki42.maceys.net/index.php?title=Module:Separated_entries&amp;action=history"/>
	<updated>2026-04-14T07:56:22Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.44.3</generator>
	<entry>
		<id>https://wiki42.maceys.net/index.php?title=Module:Separated_entries&amp;diff=560&amp;oldid=prev</id>
		<title>Lynn: Created page with &quot;-- This module takes positional parameters as input and concatenates them with -- an optional separator. The final separator (the &quot;conjunction&quot;) can be -- specified independently, enabling natural-language lists like -- &quot;foo, bar, baz and qux&quot;. The starting parameter can also be specified.  local compressSparseArray = require(&#039;Module:TableTools&#039;).compressSparseArray local p = {}  function p._main(args) 	local dataPlural = args.dataPlural 	local separator = args.separator...&quot;</title>
		<link rel="alternate" type="text/html" href="https://wiki42.maceys.net/index.php?title=Module:Separated_entries&amp;diff=560&amp;oldid=prev"/>
		<updated>2026-01-26T21:54:06Z</updated>

		<summary type="html">&lt;p&gt;Created page with &amp;quot;-- This module takes positional parameters as input and concatenates them with -- an optional separator. The final separator (the &amp;quot;conjunction&amp;quot;) can be -- specified independently, enabling natural-language lists like -- &amp;quot;foo, bar, baz and qux&amp;quot;. The starting parameter can also be specified.  local compressSparseArray = require(&amp;#039;Module:TableTools&amp;#039;).compressSparseArray local p = {}  function p._main(args) 	local dataPlural = args.dataPlural 	local separator = args.separator...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;-- This module takes positional parameters as input and concatenates them with&lt;br /&gt;
-- an optional separator. The final separator (the &amp;quot;conjunction&amp;quot;) can be&lt;br /&gt;
-- specified independently, enabling natural-language lists like&lt;br /&gt;
-- &amp;quot;foo, bar, baz and qux&amp;quot;. The starting parameter can also be specified.&lt;br /&gt;
&lt;br /&gt;
local compressSparseArray = require(&amp;#039;Module:TableTools&amp;#039;).compressSparseArray&lt;br /&gt;
local p = {}&lt;br /&gt;
&lt;br /&gt;
function p._main(args)&lt;br /&gt;
	local dataPlural = args.dataPlural&lt;br /&gt;
	local separator = args.separator&lt;br /&gt;
		-- Decode (convert to Unicode) HTML escape sequences, such as &amp;quot;&amp;amp;#32;&amp;quot; for space.&lt;br /&gt;
		and mw.text.decode(args.separator) or &amp;#039;&amp;#039;&lt;br /&gt;
	local conjunction = args.conjunction and mw.text.decode(args.conjunction) or separator&lt;br /&gt;
	-- Discard values before the starting parameter.&lt;br /&gt;
	local start = tonumber(args.start)&lt;br /&gt;
	if start then&lt;br /&gt;
		for i = 1, start - 1 do args[i] = nil end&lt;br /&gt;
	end&lt;br /&gt;
	-- Discard named parameters.&lt;br /&gt;
	local values = compressSparseArray(args)&lt;br /&gt;
	local result = mw.text.listToText(values, separator, conjunction)&lt;br /&gt;
	if dataPlural and #values &amp;gt; 0 and (#separator &amp;gt; 0 or #conjunction &amp;gt; 0) then&lt;br /&gt;
		-- flag to [[Module:Detect singular]] whether this is a list with &amp;gt;1 element&lt;br /&gt;
		result = result..&amp;#039;&amp;lt;span style=&amp;quot;display:none&amp;quot; data-plural=&amp;quot;&amp;#039;..(#values &amp;gt; 1 and &amp;#039;1&amp;#039; or &amp;#039;0&amp;#039;)..&amp;#039;&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;&amp;#039;&lt;br /&gt;
	end&lt;br /&gt;
	return result&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
local function makeInvokeFunction(separator, conjunction, first)&lt;br /&gt;
	return function (frame)&lt;br /&gt;
		local args = require(&amp;#039;Module:Arguments&amp;#039;).getArgs(frame, {frameOnly = (frame.args.frameOnly or &amp;#039;&amp;#039;) ~= &amp;#039;&amp;#039;})&lt;br /&gt;
		args.separator = separator or args.separator&lt;br /&gt;
		args.conjunction = conjunction or args.conjunction&lt;br /&gt;
		args.first = first or args.first&lt;br /&gt;
		return p._main(args)&lt;br /&gt;
	end&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
p.main = makeInvokeFunction()&lt;br /&gt;
p.br = makeInvokeFunction(&amp;#039;&amp;lt;br /&amp;gt;&amp;#039;)&lt;br /&gt;
p.comma = makeInvokeFunction(mw.message.new(&amp;#039;comma-separator&amp;#039;):plain())&lt;br /&gt;
&lt;br /&gt;
return p&lt;/div&gt;</summary>
		<author><name>Lynn</name></author>
	</entry>
</feed>