The result of the discussion was Merge. The modules have been merged for a while now, so there's nothing left to discuss here. I've applied WP:IAR and deleted Module:Br separated entries, as it looks like people have been reluctant to close this due to its technical nature. — Mr. Stradivarius ♪ talk ♪ 23:28, 23 July 2015 (UTC)
Propose merging Module:Br separated entries with Module:Separated entries.
These two modules mostly do the same thing, with the exception that Module:Br separated entries can only use <br />
as a separator and Module:Separated entries trims spaces and newlines at the beginning and end of parameters. Jc86035 (talk • contribs) Use {{re|Jc86035}} to reply to me 12:26, 12 May 2015 (UTC)
mw.message.new( 'comma-separator' ):plain()
and not just a plain character string like , 
. If you feel that it should be added to the nomination then do so. Jc86035 (talk • contribs) Use {{re|Jc86035}} to reply to me 13:19, 12 May 2015 (UTC)
 
instead of a normal space - these are used in template code because parser functions like #if trim whitespace, but this isn't a problem in Lua modules. — Mr. Stradivarius ♪ talk ♪ 12:05, 15 May 2015 (UTC)
{{#invoke:Separated entries|main|1|2|separator= }}
{{#invoke:Separated entries|main|1|2|separator= }}
, then the space will get trimmed to an empty string before being passed to Lua, and then if you html-encode it inside Lua it would still be an empty string. So html-encoding wouldn't make any difference in that scenario. — Mr. Stradivarius ♪ talk ♪ 13:14, 15 May 2015 (UTC)
mw.text.decode
, * {{#invoke:Separated entries|main|1|2|3|4|5|separator= *}}
would not produce a list. I suppose we could assign the first and second unnamed parameters to the separator and conjunction, but that would come at the expense of an intuitive interface. Alakzi (talk) 13:48, 15 May 2015 (UTC)
­
- ({{Shy}}) and em-space-delimited ({{Infobox NFL player}}) entries. I've also used the former extensively for template substitution, as it provides a functional interface to what would've been a series of #if clauses (see the |line=
in User:Alakzi/ITts, which includes the list syntax above). Alakzi (talk) 15:07, 15 May 2015 (UTC)