<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://themidnight.wiki/index.php?action=history&amp;feed=atom&amp;title=Module%3ACheck_for_clobbered_parameters%2Fdoc</id>
	<title>Module:Check for clobbered parameters/doc - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://themidnight.wiki/index.php?action=history&amp;feed=atom&amp;title=Module%3ACheck_for_clobbered_parameters%2Fdoc"/>
	<link rel="alternate" type="text/html" href="https://themidnight.wiki/index.php?title=Module:Check_for_clobbered_parameters/doc&amp;action=history"/>
	<updated>2026-04-04T03:52:36Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.41.1</generator>
	<entry>
		<id>https://themidnight.wiki/index.php?title=Module:Check_for_clobbered_parameters/doc&amp;diff=9223&amp;oldid=prev</id>
		<title>Timothy: 1 revision imported</title>
		<link rel="alternate" type="text/html" href="https://themidnight.wiki/index.php?title=Module:Check_for_clobbered_parameters/doc&amp;diff=9223&amp;oldid=prev"/>
		<updated>2023-07-09T00:50:58Z</updated>

		<summary type="html">&lt;p&gt;1 revision imported&lt;/p&gt;
&lt;table style=&quot;background-color: #fff; color: #202122;&quot; data-mw=&quot;interface&quot;&gt;
				&lt;tr class=&quot;diff-title&quot; lang=&quot;en&quot;&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;← Older revision&lt;/td&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;Revision as of 20:50, 8 July 2023&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-notice&quot; lang=&quot;en&quot;&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(No difference)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
		<author><name>Timothy</name></author>
	</entry>
	<entry>
		<id>https://themidnight.wiki/index.php?title=Module:Check_for_clobbered_parameters/doc&amp;diff=9222&amp;oldid=prev</id>
		<title>wikipedia&gt;Izno: /* See also */ and anotha one</title>
		<link rel="alternate" type="text/html" href="https://themidnight.wiki/index.php?title=Module:Check_for_clobbered_parameters/doc&amp;diff=9222&amp;oldid=prev"/>
		<updated>2021-05-10T00:02:25Z</updated>

		<summary type="html">&lt;p&gt;&lt;span dir=&quot;auto&quot;&gt;&lt;span class=&quot;autocomment&quot;&gt;See also: &lt;/span&gt; and anotha one&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;{{Module rating |beta}}&lt;br /&gt;
{{high-use|111137}}&lt;br /&gt;
{{Lua|Module:If preview}}&lt;br /&gt;
This module may be appended to a template to check for uses of tuples of conflicting parameters.&lt;br /&gt;
&lt;br /&gt;
== Usage ==&lt;br /&gt;
=== Basic usage ===&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
{{#invoke:Check for clobbered parameters|check&lt;br /&gt;
|nested=1&lt;br /&gt;
|template=Some template name&lt;br /&gt;
|cat={{main other|Category:Some tracking category}}&lt;br /&gt;
|arg1a; arg1b|arg2a; arg2b; arg2c|...|argNa; argNb}}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Here, (&amp;lt;code&amp;gt;arg1a&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;arg1b&amp;lt;/code&amp;gt;), (&amp;lt;code&amp;gt;arg2a&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;arg2b&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;arg2c&amp;lt;/code&amp;gt;), are tuples of the conflicting parameters.&lt;br /&gt;
&lt;br /&gt;
By default, the module ignores blank parameters which is useful for {{tl|if empty}} chains of parameters.  For nested chains of parameters, use {{para|nested|1}} to consider blank parameters as well.&lt;br /&gt;
&lt;br /&gt;
By default, the delimiter for the tuples is &amp;lt;code&amp;gt;;&amp;lt;/code&amp;gt; but this can be changed with {{para|delimiter}}.&lt;br /&gt;
&lt;br /&gt;
The value of {{para|template}} is used to for the text of the preview warning message.  When omitted, the module will use a generic message.&lt;br /&gt;
&lt;br /&gt;
== Example 1 ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
{{Infobox&lt;br /&gt;
| above = {{{name|}}}&lt;br /&gt;
&lt;br /&gt;
| label1 = Founder{{#if:{{{founders|}}}|s}}&lt;br /&gt;
| data1 = {{if empty| {{{founders|}}} | {{{founder|}}} }}&lt;br /&gt;
&lt;br /&gt;
| label2 = Headquarters&lt;br /&gt;
| data2 = {{if empty| {{{headquarters|}}} | {{{hq|}}} | {{{location|}}} }}&lt;br /&gt;
&lt;br /&gt;
}}&amp;lt;!-- &lt;br /&gt;
  end infobox, start tracking&lt;br /&gt;
--&amp;gt;{{#invoke:Check for clobbered parameters|check&lt;br /&gt;
| template = Infobox example&lt;br /&gt;
| cat = {{main other|Category:Pages using infobox example with conflicting parameters}}&lt;br /&gt;
| founders; founder&lt;br /&gt;
| headquarters; hq; location&lt;br /&gt;
}}&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Example 2 ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
{{Infobox&lt;br /&gt;
| above = {{{name|}}}&lt;br /&gt;
&lt;br /&gt;
| label1 = Founder(s)&lt;br /&gt;
| data1 = {{{founders|{{{founder|}}}}}}&lt;br /&gt;
&lt;br /&gt;
| label2 = Headquarters&lt;br /&gt;
| data2 = {{{headquarters|{{{hq|{{{location|}}}}}}}}}&lt;br /&gt;
&lt;br /&gt;
}}&amp;lt;!-- &lt;br /&gt;
  end infobox, start tracking&lt;br /&gt;
--&amp;gt;{{#invoke:Check for clobbered parameters|check&lt;br /&gt;
| nested = 1&lt;br /&gt;
| template = Infobox example&lt;br /&gt;
| cat = {{main other|Category:Pages using infobox example with conflicting parameters}}&lt;br /&gt;
| founders; founder&lt;br /&gt;
| headquarters; hq; location&lt;br /&gt;
}}&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
* [[Module:Check for unknown parameters]]&lt;br /&gt;
* [[Module:Check for deprecated parameters]]&lt;br /&gt;
* [[Template:Conflicting parameters category]] (for use on category pages)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;includeonly&amp;gt;{{sandbox other||&lt;br /&gt;
&amp;lt;!-- Categories go here and interwikis go in Wikidata. --&amp;gt;&lt;br /&gt;
[[Category:Modules that add a tracking category]]&lt;br /&gt;
&lt;br /&gt;
}}&amp;lt;/includeonly&amp;gt;&lt;/div&gt;</summary>
		<author><name>wikipedia&gt;Izno</name></author>
	</entry>
</feed>