<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://blackwiki.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=192.55.54.42&amp;*</id>
	<title>blackwiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://blackwiki.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=192.55.54.42&amp;*"/>
	<link rel="alternate" type="text/html" href="https://blackwiki.org/index.php?title=Special:Contributions/192.55.54.42"/>
	<updated>2026-05-17T02:58:33Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.34.2</generator>
	<entry>
		<id>https://blackwiki.org/index.php?title=Hatnote/doc&amp;diff=215322</id>
		<title>Hatnote/doc</title>
		<link rel="alternate" type="text/html" href="https://blackwiki.org/index.php?title=Hatnote/doc&amp;diff=215322"/>
		<updated>2015-04-26T12:59:43Z</updated>

		<summary type="html">&lt;p&gt;192.55.54.42: Template:Format link&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{high-risk|802,000+}}&lt;br /&gt;
&lt;br /&gt;
This is a meta-module that provides various functions for making hatnotes. It implements the {{tl|hatnote}} template, for use in hatnotes at the top of pages, and the {{tl|format link}} template, which is used to format a wikilink for use in hatnotes. It also contains a number of helper functions for use in other Lua hatnote modules.&lt;br /&gt;
&lt;br /&gt;
== Use from wikitext ==&lt;br /&gt;
&lt;br /&gt;
The functions in this module cannot be used directly from #invoke, and must be used through templates instead. Please see [[Template:Hatnote]] and [[Template:Format link]] for documentation.&lt;br /&gt;
&lt;br /&gt;
== Use from other Lua modules ==&lt;br /&gt;
&lt;br /&gt;
To load this module from another Lua module, use the following code.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
local mHatnote = require('Module:Hatnote')&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can then use the functions as documented below.&lt;br /&gt;
&lt;br /&gt;
=== Hatnote ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
mHatnote._hatnote(s, options)&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Formats the string &amp;lt;var&amp;gt;s&amp;lt;/var&amp;gt; as a hatnote. This encloses &amp;lt;var&amp;gt;s&amp;lt;/var&amp;gt; in the tags {{tag|div|params=class=&amp;quot;hatnote&amp;quot;}}. Options are provided in the &amp;lt;var&amp;gt;options&amp;lt;/var&amp;gt; table. Options include:&lt;br /&gt;
* &amp;lt;var&amp;gt;options.extraclasses&amp;lt;/var&amp;gt; - a string of extra classes to provide&lt;br /&gt;
* &amp;lt;var&amp;gt;options.selfref&amp;lt;/var&amp;gt; - if this is not nil or false, adds the class &amp;quot;selfref&amp;quot;, used to denote self-references to Wikipedia (see [[Template:Selfref]]))&lt;br /&gt;
The CSS of the hatnote class is defined in [[MediaWiki:Common.css]].&lt;br /&gt;
&lt;br /&gt;
; Example 1&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
mHatnote._hatnote('This is a hatnote.')&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Produces:&lt;br /&gt;
{{tag|div|content=This is a hatnote.|params=class=&amp;quot;hatnote&amp;quot;}}&lt;br /&gt;
&lt;br /&gt;
Displays as:&lt;br /&gt;
{{hatnote|This is a hatnote.}}&lt;br /&gt;
&lt;br /&gt;
; Example 2&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
mHatnote._hatnote('This is a hatnote.', {extraclasses = 'boilerplate seealso', selfref = true})&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Produces:&lt;br /&gt;
{{tag|div|content=This is a hatnote.|params=class=&amp;quot;hatnote boilerplate seealso selfref&amp;quot;}}&lt;br /&gt;
&lt;br /&gt;
Displayed as:&lt;br /&gt;
{{hatnote|This is a hatnote.|extraclasses=boilerplate seealso|selfref=true}}&lt;br /&gt;
&lt;br /&gt;
=== Format link ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
mHatnote._formatLink(link, display)&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Formats &amp;lt;var&amp;gt;link&amp;lt;/var&amp;gt; as a wikilink for display in hatnote templates, with optional display value &amp;lt;var&amp;gt;display&amp;lt;/var&amp;gt;. Categories and files are automatically escaped with the [[Help:Colon trick|colon trick]], and links to sections are automatically formatted as ''page § section'', rather than the MediaWiki default of ''page#section''.&lt;br /&gt;
&lt;br /&gt;
;Examples:&lt;br /&gt;
: {{code|mHatnote._formatLink('Lion')|lua}} &amp;amp;rarr; &amp;lt;nowiki&amp;gt;[[Lion]]&amp;lt;/nowiki&amp;gt; &amp;amp;rarr; {{format hatnote link|Lion}}&lt;br /&gt;
: {{code|mHatnote._formatLink('Lion#Etymology')|lua}} &amp;amp;rarr; &amp;lt;nowiki&amp;gt;[[Lion#Etymology|Lion § Etymology]]&amp;lt;/nowiki&amp;gt; &amp;amp;rarr; {{format hatnote link|Lion#Etymology}}&lt;br /&gt;
: {{code|mHatnote._formatLink('Category:Lions')|lua}} &amp;amp;rarr; &amp;lt;nowiki&amp;gt;[[:Category:Lions]]&amp;lt;/nowiki&amp;gt; &amp;amp;rarr; {{format hatnote link|Category:Lions}}&lt;br /&gt;
: {{code|mHatnote._formatLink('Lion#Etymology', 'Etymology of lion')|lua}} &amp;amp;rarr; &amp;lt;nowiki&amp;gt;[[Lion#Etymology|Etymology of lion]]&amp;lt;/nowiki&amp;gt; &amp;amp;rarr; {{format hatnote link|Lion#Etymology|Etymology of lion}}&lt;br /&gt;
&lt;br /&gt;
=== Format pages ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
mHatnote.formatPages(...)&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Formats a list of pages using the [[#Format link|_formatLink]] function, and returns the result as an array. For example, the code {{code|mHatnote.formatPages('Lion', 'Category:Lions', 'Lion#Etymology')|lua}} would produce an array like {{code|{'[[Lion]]', '[[:Category:Lions]]', '[[Lion#Etymology|Lion § Etymology]]'}|lua}}.&lt;br /&gt;
&lt;br /&gt;
=== Format page tables ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
mHatnote.formatPageTables(...)&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Takes a list of page/display tables, formats them with the [[#Format link|_formatLink]] function, and returns the result as an array. Each item in the list must be a table. The first value in the table is the link, and is required. The second value in the table is the display value, and is optional. For example, the code {{code|mHatnote.formatPages({'Lion', 'the Lion article'}, {'Category:Lions'}, {'Lion#Etymology', 'the etymology of lion'})|lua}} would produce an array like {{code|{'[[Lion|the Lion article]]', '[[:Category:Lions]]', '[[Lion#Etymology|the etymology of lion]]'}|lua}}.&lt;br /&gt;
&lt;br /&gt;
=== Find namespace id ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
mHatnote.findNamespaceId(link, removeColon)&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Finds the [[WP:NS|namespace id]] of the string &amp;lt;var&amp;gt;link&amp;lt;/var&amp;gt;, which should be a valid page name, with or without the section name. This function will not work if the page name is enclosed with square brackets. When trying to parse the namespace name, colons are removed from the start of the link by default. This is helpful if users have specified colons when they are not strictly necessary. If you do not need to check for initial colons, set &amp;lt;var&amp;gt;removeColon&amp;lt;/var&amp;gt; to false.&lt;br /&gt;
&lt;br /&gt;
;Examples:&lt;br /&gt;
: {{code|mHatnote.findNamespaceId('Lion')|lua}} &amp;amp;rarr; 0&lt;br /&gt;
: {{code|mHatnote.findNamespaceId('Category:Lions')|lua}} &amp;amp;rarr; 14&lt;br /&gt;
: {{code|mHatnote.findNamespaceId(':Category:Lions')|lua}} &amp;amp;rarr; 14&lt;br /&gt;
: {{code|mHatnote.findNamespaceId(':Category:Lions', false)|lua}} &amp;amp;rarr; 0 (the namespace is detected as &amp;quot;:Category&amp;quot;, rather than &amp;quot;Category&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
=== Make wikitext error ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
mHatnote.makeWikitextError(msg, helpLink, addTrackingCategory)&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Formats the string &amp;lt;var&amp;gt;msg&amp;lt;/var&amp;gt; as a red wikitext error message, with optional link to a help page &amp;lt;var&amp;gt;helpLink&amp;lt;/var&amp;gt;. Normally this function also adds [[:Category:Hatnote templates with errors]]; however, if &amp;lt;var&amp;gt;addTrackingCategory&amp;lt;/var&amp;gt; is not false after being passed through [[Module:Yesno]], then the category is suppressed. This means that the category can be suppressed with &amp;lt;var&amp;gt;addTrackingCategory&amp;lt;/var&amp;gt; values including &amp;quot;no&amp;quot;, &amp;quot;n&amp;quot;, 0, &amp;quot;false&amp;quot;, and {{code|false|lua}}.&lt;br /&gt;
&lt;br /&gt;
Examples:&lt;br /&gt;
:{{code|mHatnote.makeWikitextError('an error has occurred')|lua}} &amp;amp;rarr; &amp;lt;strong class=&amp;quot;error&amp;quot;&amp;gt;Error: an error has occurred.&amp;lt;/strong&amp;gt;&lt;br /&gt;
:{{code|mHatnote.makeWikitextError('an error has occurred', 'Template:Example#Errors')|lua}} &amp;amp;rarr; &amp;lt;strong class=&amp;quot;error&amp;quot;&amp;gt;Error: an error has occurred ([[Template:Example#Errors|help]]).&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Examples ==&lt;br /&gt;
&lt;br /&gt;
For examples of how this module is used in other Lua modules, see the following (listed in order of complexity):&lt;br /&gt;
&lt;br /&gt;
* [[Module:Details]]&lt;br /&gt;
* [[Module:Further]]&lt;br /&gt;
* [[Module:See also]]&lt;br /&gt;
* [[Module:Main]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;includeonly&amp;gt;{{#ifeq:{{SUBPAGENAME}}|sandbox||&lt;br /&gt;
&amp;lt;!-- Categories go here and interwikis go in Wikidata. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
}}&amp;lt;/includeonly&amp;gt;&lt;/div&gt;</summary>
		<author><name>192.55.54.42</name></author>
		
	</entry>
	<entry>
		<id>https://blackwiki.org/index.php?title=Module:Hatnote/doc&amp;diff=221224</id>
		<title>Module:Hatnote/doc</title>
		<link rel="alternate" type="text/html" href="https://blackwiki.org/index.php?title=Module:Hatnote/doc&amp;diff=221224"/>
		<updated>2015-04-26T12:59:43Z</updated>

		<summary type="html">&lt;p&gt;192.55.54.42: Template:Format link&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{high-risk|802,000+}}&lt;br /&gt;
&lt;br /&gt;
This is a meta-module that provides various functions for making hatnotes. It implements the {{tl|hatnote}} template, for use in hatnotes at the top of pages, and the {{tl|format link}} template, which is used to format a wikilink for use in hatnotes. It also contains a number of helper functions for use in other Lua hatnote modules.&lt;br /&gt;
&lt;br /&gt;
== Use from wikitext ==&lt;br /&gt;
&lt;br /&gt;
The functions in this module cannot be used directly from #invoke, and must be used through templates instead. Please see [[Template:Hatnote]] and [[Template:Format link]] for documentation.&lt;br /&gt;
&lt;br /&gt;
== Use from other Lua modules ==&lt;br /&gt;
&lt;br /&gt;
To load this module from another Lua module, use the following code.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
local mHatnote = require('Module:Hatnote')&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can then use the functions as documented below.&lt;br /&gt;
&lt;br /&gt;
=== Hatnote ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
mHatnote._hatnote(s, options)&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Formats the string &amp;lt;var&amp;gt;s&amp;lt;/var&amp;gt; as a hatnote. This encloses &amp;lt;var&amp;gt;s&amp;lt;/var&amp;gt; in the tags {{tag|div|params=class=&amp;quot;hatnote&amp;quot;}}. Options are provided in the &amp;lt;var&amp;gt;options&amp;lt;/var&amp;gt; table. Options include:&lt;br /&gt;
* &amp;lt;var&amp;gt;options.extraclasses&amp;lt;/var&amp;gt; - a string of extra classes to provide&lt;br /&gt;
* &amp;lt;var&amp;gt;options.selfref&amp;lt;/var&amp;gt; - if this is not nil or false, adds the class &amp;quot;selfref&amp;quot;, used to denote self-references to Wikipedia (see [[Template:Selfref]]))&lt;br /&gt;
The CSS of the hatnote class is defined in [[MediaWiki:Common.css]].&lt;br /&gt;
&lt;br /&gt;
; Example 1&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
mHatnote._hatnote('This is a hatnote.')&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Produces:&lt;br /&gt;
{{tag|div|content=This is a hatnote.|params=class=&amp;quot;hatnote&amp;quot;}}&lt;br /&gt;
&lt;br /&gt;
Displays as:&lt;br /&gt;
{{hatnote|This is a hatnote.}}&lt;br /&gt;
&lt;br /&gt;
; Example 2&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
mHatnote._hatnote('This is a hatnote.', {extraclasses = 'boilerplate seealso', selfref = true})&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Produces:&lt;br /&gt;
{{tag|div|content=This is a hatnote.|params=class=&amp;quot;hatnote boilerplate seealso selfref&amp;quot;}}&lt;br /&gt;
&lt;br /&gt;
Displayed as:&lt;br /&gt;
{{hatnote|This is a hatnote.|extraclasses=boilerplate seealso|selfref=true}}&lt;br /&gt;
&lt;br /&gt;
=== Format link ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
mHatnote._formatLink(link, display)&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Formats &amp;lt;var&amp;gt;link&amp;lt;/var&amp;gt; as a wikilink for display in hatnote templates, with optional display value &amp;lt;var&amp;gt;display&amp;lt;/var&amp;gt;. Categories and files are automatically escaped with the [[Help:Colon trick|colon trick]], and links to sections are automatically formatted as ''page § section'', rather than the MediaWiki default of ''page#section''.&lt;br /&gt;
&lt;br /&gt;
;Examples:&lt;br /&gt;
: {{code|mHatnote._formatLink('Lion')|lua}} &amp;amp;rarr; &amp;lt;nowiki&amp;gt;[[Lion]]&amp;lt;/nowiki&amp;gt; &amp;amp;rarr; {{format hatnote link|Lion}}&lt;br /&gt;
: {{code|mHatnote._formatLink('Lion#Etymology')|lua}} &amp;amp;rarr; &amp;lt;nowiki&amp;gt;[[Lion#Etymology|Lion § Etymology]]&amp;lt;/nowiki&amp;gt; &amp;amp;rarr; {{format hatnote link|Lion#Etymology}}&lt;br /&gt;
: {{code|mHatnote._formatLink('Category:Lions')|lua}} &amp;amp;rarr; &amp;lt;nowiki&amp;gt;[[:Category:Lions]]&amp;lt;/nowiki&amp;gt; &amp;amp;rarr; {{format hatnote link|Category:Lions}}&lt;br /&gt;
: {{code|mHatnote._formatLink('Lion#Etymology', 'Etymology of lion')|lua}} &amp;amp;rarr; &amp;lt;nowiki&amp;gt;[[Lion#Etymology|Etymology of lion]]&amp;lt;/nowiki&amp;gt; &amp;amp;rarr; {{format hatnote link|Lion#Etymology|Etymology of lion}}&lt;br /&gt;
&lt;br /&gt;
=== Format pages ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
mHatnote.formatPages(...)&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Formats a list of pages using the [[#Format link|_formatLink]] function, and returns the result as an array. For example, the code {{code|mHatnote.formatPages('Lion', 'Category:Lions', 'Lion#Etymology')|lua}} would produce an array like {{code|{'[[Lion]]', '[[:Category:Lions]]', '[[Lion#Etymology|Lion § Etymology]]'}|lua}}.&lt;br /&gt;
&lt;br /&gt;
=== Format page tables ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
mHatnote.formatPageTables(...)&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Takes a list of page/display tables, formats them with the [[#Format link|_formatLink]] function, and returns the result as an array. Each item in the list must be a table. The first value in the table is the link, and is required. The second value in the table is the display value, and is optional. For example, the code {{code|mHatnote.formatPages({'Lion', 'the Lion article'}, {'Category:Lions'}, {'Lion#Etymology', 'the etymology of lion'})|lua}} would produce an array like {{code|{'[[Lion|the Lion article]]', '[[:Category:Lions]]', '[[Lion#Etymology|the etymology of lion]]'}|lua}}.&lt;br /&gt;
&lt;br /&gt;
=== Find namespace id ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
mHatnote.findNamespaceId(link, removeColon)&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Finds the [[WP:NS|namespace id]] of the string &amp;lt;var&amp;gt;link&amp;lt;/var&amp;gt;, which should be a valid page name, with or without the section name. This function will not work if the page name is enclosed with square brackets. When trying to parse the namespace name, colons are removed from the start of the link by default. This is helpful if users have specified colons when they are not strictly necessary. If you do not need to check for initial colons, set &amp;lt;var&amp;gt;removeColon&amp;lt;/var&amp;gt; to false.&lt;br /&gt;
&lt;br /&gt;
;Examples:&lt;br /&gt;
: {{code|mHatnote.findNamespaceId('Lion')|lua}} &amp;amp;rarr; 0&lt;br /&gt;
: {{code|mHatnote.findNamespaceId('Category:Lions')|lua}} &amp;amp;rarr; 14&lt;br /&gt;
: {{code|mHatnote.findNamespaceId(':Category:Lions')|lua}} &amp;amp;rarr; 14&lt;br /&gt;
: {{code|mHatnote.findNamespaceId(':Category:Lions', false)|lua}} &amp;amp;rarr; 0 (the namespace is detected as &amp;quot;:Category&amp;quot;, rather than &amp;quot;Category&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
=== Make wikitext error ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
mHatnote.makeWikitextError(msg, helpLink, addTrackingCategory)&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Formats the string &amp;lt;var&amp;gt;msg&amp;lt;/var&amp;gt; as a red wikitext error message, with optional link to a help page &amp;lt;var&amp;gt;helpLink&amp;lt;/var&amp;gt;. Normally this function also adds [[:Category:Hatnote templates with errors]]; however, if &amp;lt;var&amp;gt;addTrackingCategory&amp;lt;/var&amp;gt; is not false after being passed through [[Module:Yesno]], then the category is suppressed. This means that the category can be suppressed with &amp;lt;var&amp;gt;addTrackingCategory&amp;lt;/var&amp;gt; values including &amp;quot;no&amp;quot;, &amp;quot;n&amp;quot;, 0, &amp;quot;false&amp;quot;, and {{code|false|lua}}.&lt;br /&gt;
&lt;br /&gt;
Examples:&lt;br /&gt;
:{{code|mHatnote.makeWikitextError('an error has occurred')|lua}} &amp;amp;rarr; &amp;lt;strong class=&amp;quot;error&amp;quot;&amp;gt;Error: an error has occurred.&amp;lt;/strong&amp;gt;&lt;br /&gt;
:{{code|mHatnote.makeWikitextError('an error has occurred', 'Template:Example#Errors')|lua}} &amp;amp;rarr; &amp;lt;strong class=&amp;quot;error&amp;quot;&amp;gt;Error: an error has occurred ([[Template:Example#Errors|help]]).&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Examples ==&lt;br /&gt;
&lt;br /&gt;
For examples of how this module is used in other Lua modules, see the following (listed in order of complexity):&lt;br /&gt;
&lt;br /&gt;
* [[Module:Details]]&lt;br /&gt;
* [[Module:Further]]&lt;br /&gt;
* [[Module:See also]]&lt;br /&gt;
* [[Module:Main]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;includeonly&amp;gt;{{#ifeq:{{SUBPAGENAME}}|sandbox||&lt;br /&gt;
&amp;lt;!-- Categories go here and interwikis go in Wikidata. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
}}&amp;lt;/includeonly&amp;gt;&lt;/div&gt;</summary>
		<author><name>192.55.54.42</name></author>
		
	</entry>
	<entry>
		<id>https://blackwiki.org/index.php?title=Template:IEEE_standards&amp;diff=5930592</id>
		<title>Template:IEEE standards</title>
		<link rel="alternate" type="text/html" href="https://blackwiki.org/index.php?title=Template:IEEE_standards&amp;diff=5930592"/>
		<updated>2015-02-09T03:17:05Z</updated>

		<summary type="html">&lt;p&gt;192.55.54.42: +16326&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Navbox&lt;br /&gt;
|name = IEEE standards&lt;br /&gt;
|title = [[IEEE Standards Association|IEEE standards]]&lt;br /&gt;
|listclass = hlist&lt;br /&gt;
&lt;br /&gt;
|group1 = Current&lt;br /&gt;
|list1 =&lt;br /&gt;
*[[IEEE-488|488]]&lt;br /&gt;
*[[Software quality assurance|730]]&lt;br /&gt;
*[[IEEE floating point|754]]&lt;br /&gt;
**[[IEEE 754 revision|Revision]]&lt;br /&gt;
*[[IEEE 854-1987|854]]&lt;br /&gt;
*[[Software configuration management|828]]&lt;br /&gt;
*[[Software test documentation|829]]&lt;br /&gt;
* [[Futurebus|896]]&lt;br /&gt;
*[[Single UNIX Specification|1003]]&lt;br /&gt;
*[[VMEbus|1014]]&lt;br /&gt;
*[[Software design description|1016]]&lt;br /&gt;
*[[VHDL|1076]]&lt;br /&gt;
*[[Joint Test Action Group|1149.1]]&lt;br /&gt;
* [[PILOT|1154]]&lt;br /&gt;
*[[IEEE 1164|1164]]&lt;br /&gt;
*[[Open Firmware|1275]]&lt;br /&gt;
*[[Distributed Interactive Simulation|1278]]&lt;br /&gt;
*[[IEEE 1284|1284]]&lt;br /&gt;
*[[IEEE 1355|1355]]&lt;br /&gt;
*[[Verilog|1364]]&lt;br /&gt;
*[[IEEE 1394|1394]]&lt;br /&gt;
*[[IEEE 1451|1451]]&lt;br /&gt;
*[[Standard Delay Format|1497]]&lt;br /&gt;
*[[High-level architecture (simulation)|1516]]&lt;br /&gt;
*[[IEEE 1541-2002|1541]]&lt;br /&gt;
*[[IEEE 1547|1547]]&lt;br /&gt;
*[[IEEE 1584|1584]]&lt;br /&gt;
*[[Precision Time Protocol |1588]]&lt;br /&gt;
*[[Scalable Coherent Interface|1596]]&lt;br /&gt;
*[[Advanced Library Format|1603]]&lt;br /&gt;
*[[IEEE 1613|1613]]&lt;br /&gt;
*[[SystemC|1666]]&lt;br /&gt;
*[[IEEE 1667|1667]]&lt;br /&gt;
*[[IEEE 1675-2008|1675]]&lt;br /&gt;
*[[IP-XACT|1685]]&lt;br /&gt;
*[[SystemVerilog|1800]]&lt;br /&gt;
*[[Unified Power Format|1801]]&lt;br /&gt;
*[[DNP3|1815]]&lt;br /&gt;
*[[Property Specification Language|1850]]&lt;br /&gt;
*[[DySPAN|1900]]&lt;br /&gt;
*[[IEEE 1901|1901]]&lt;br /&gt;
*[[RuBee|1902]]&lt;br /&gt;
* [[Service Interoperability in Ethernet Passive Optical Networks|1904]]&lt;br /&gt;
*[[IEEE 1905|1905]]&lt;br /&gt;
*[[IEEE 2030|2030]]&lt;br /&gt;
*[[ISO/IEEE 11073|11073]]&lt;br /&gt;
*[[IEEE 12207|12207]]&lt;br /&gt;
*[[Software maintenance|14764]]&lt;br /&gt;
*[[Project management|16326]]&lt;br /&gt;
*[[Requirements engineering|29148]]&lt;br /&gt;
*[[ISO/IEC 42010|42010]]&lt;br /&gt;
&lt;br /&gt;
|group2 = [[IEEE 802|802 series]]&lt;br /&gt;
|list2 = {{Navbox subgroup&lt;br /&gt;
|group1 = [[IEEE 802.1|802.1]]&lt;br /&gt;
|list1 =&lt;br /&gt;
*[[IEEE 802.1D|D]]&lt;br /&gt;
*[[IEEE P802.1p|p]]&lt;br /&gt;
*[[IEEE 802.1Q|Q]]&lt;br /&gt;
*[[Stream Reservation Protocol|Qat]]&lt;br /&gt;
*[[Provider Backbone Bridge Traffic Engineering|Qay]]&lt;br /&gt;
*[[Spanning Tree Protocol|w]]&lt;br /&gt;
*[[IEEE 802.1X|X]]&lt;br /&gt;
*[[Link Layer Discovery Protocol|ab]]&lt;br /&gt;
*[[IEEE 802.1ad|ad]]&lt;br /&gt;
*[[IEEE 802.1AE|AE]]&lt;br /&gt;
*[[IEEE 802.1ag|ag]]&lt;br /&gt;
*[[IEEE 802.1ah-2008|ah]]&lt;br /&gt;
*[[Multiple Registration Protocol|ak]]&lt;br /&gt;
*[[IEEE 802.1aq|aq]]&lt;br /&gt;
*[[Link aggregation|ax]]&lt;br /&gt;
*[[Data center bridging#IEEE Task Group|az]]&lt;br /&gt;
&lt;br /&gt;
|group3 = [[IEEE 802.11|802.11]]&lt;br /&gt;
|list3 =&lt;br /&gt;
*[[IEEE 802.11a-1999|a]]&lt;br /&gt;
*[[IEEE 802.11b-1999|b]]&lt;br /&gt;
*[[IEEE 802.11c|c]]&lt;br /&gt;
*[[IEEE 802.11d-2001|d]]&lt;br /&gt;
*[[IEEE 802.11e-2005|e]]&lt;br /&gt;
*[[Inter-Access Point Protocol|f]]&lt;br /&gt;
*[[IEEE 802.11g-2003|g]]&lt;br /&gt;
*[[IEEE 802.11h-2003|h]]&lt;br /&gt;
*[[IEEE 802.11i-2004|i]]&lt;br /&gt;
*[[IEEE 802.11j-2004|j]]&lt;br /&gt;
*[[IEEE 802.11k-2008|k]]&lt;br /&gt;
*[[IEEE 802.11n-2009|n]]&lt;br /&gt;
*[[IEEE 802.11p|p]]&lt;br /&gt;
*[[IEEE 802.11r-2008|r]]&lt;br /&gt;
*[[IEEE 802.11s|s]]&lt;br /&gt;
*[[IEEE 802.11u|u]]&lt;br /&gt;
*[[IEEE 802.11v|v]]&lt;br /&gt;
*[[IEEE 802.11w-2009|w]]&lt;br /&gt;
*[[IEEE 802.11y-2008|y]]&lt;br /&gt;
*[[IEEE 802.11ac|ac]]&lt;br /&gt;
*[[Wireless Gigabit Alliance|ad]]&lt;br /&gt;
*[[IEEE 802.11af|af]]&lt;br /&gt;
*[[IEEE 802.11ah|ah]]&lt;br /&gt;
*[[IEEE 802.11ai|ai]]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
*[[IEEE 802.2|.2]]&lt;br /&gt;
*[[IEEE 802.3|.3]]&lt;br /&gt;
*[[Token bus network|.4]]&lt;br /&gt;
*[[Token ring|.5]]&lt;br /&gt;
*[[IEEE 802.6|.6]]&lt;br /&gt;
*[[IEEE 802.7|.7]]&lt;br /&gt;
*[[IEEE 802.8|.8]]&lt;br /&gt;
*[[IEEE 802.9|.9]]&lt;br /&gt;
*[[IEEE 802.10|.10]]&lt;br /&gt;
*[[100BaseVG|.12]]&lt;br /&gt;
*[[Cable modem#IEEE 802.14|.14]]&lt;br /&gt;
*[[IEEE 802.15|.15]]&lt;br /&gt;
**[[Bluetooth|.1]]&lt;br /&gt;
**[[IEEE 802.15.4|.4]]&lt;br /&gt;
**[[IEEE 802.15.4a|.4a]]&lt;br /&gt;
*[[IEEE 802.16|.16]]&lt;br /&gt;
**[[WiMAX|d · e]]&lt;br /&gt;
*[[Resilient Packet Ring|.17]]&lt;br /&gt;
*[[IEEE 802.18|.18]]&lt;br /&gt;
*[[IEEE 802.20|.20]]&lt;br /&gt;
*[[IEEE 802.21|.21]]&lt;br /&gt;
*[[IEEE 802.22|.22]]&lt;br /&gt;
&lt;br /&gt;
|group3 = Proposed&lt;br /&gt;
|list3 =&lt;br /&gt;
*[[IEEE P1363|P1363]]&lt;br /&gt;
*[[IEEE P1619|P1619]]&lt;br /&gt;
* [[Rosetta-lang|P1699]]&lt;br /&gt;
*[[Universal Power Adapter for Mobile Devices|P1823]]&lt;br /&gt;
*[[IEEE P1906.1|P1906.1]]&lt;br /&gt;
&lt;br /&gt;
|group4 = Superseded&lt;br /&gt;
|list4 =&lt;br /&gt;
*[[IEEE 754-1985|754-1985]]&lt;br /&gt;
*[[Software requirements specification|830]]&lt;br /&gt;
*[[IEEE 1219|1219]]&lt;br /&gt;
*[[Software requirements specification|1233]]&lt;br /&gt;
*[[Concept of operations|1362]]&lt;br /&gt;
*[[IEEE 1471|1471]]&lt;br /&gt;
&lt;br /&gt;
|belowclass = hlist&lt;br /&gt;
|below = &lt;br /&gt;
;''See also''&lt;br /&gt;
:[[IEEE Standards Association]]&lt;br /&gt;
:[[:Category:IEEE standards]]&lt;br /&gt;
}}&amp;lt;noinclude&amp;gt;&lt;br /&gt;
{{documentation}}&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>192.55.54.42</name></author>
		
	</entry>
	<entry>
		<id>https://blackwiki.org/index.php?title=Module:Wikibase/doc&amp;diff=455922</id>
		<title>Module:Wikibase/doc</title>
		<link rel="alternate" type="text/html" href="https://blackwiki.org/index.php?title=Module:Wikibase/doc&amp;diff=455922"/>
		<updated>2015-02-08T12:06:30Z</updated>

		<summary type="html">&lt;p&gt;192.55.54.42: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This module is copied from the example from the module documentation at [[mw:Extension:Wikibase Client/Lua]]. It should be kept consistent with that documentation, rather than being adapted further for use on Wikipedia.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;includeonly&amp;gt;&lt;br /&gt;
[[Category:Wikidata]]&lt;br /&gt;
&amp;lt;/includeonly&amp;gt;&lt;/div&gt;</summary>
		<author><name>192.55.54.42</name></author>
		
	</entry>
	<entry>
		<id>https://blackwiki.org/index.php?title=Template:Deadliest_United_States_hurricanes&amp;diff=3922120</id>
		<title>Template:Deadliest United States hurricanes</title>
		<link rel="alternate" type="text/html" href="https://blackwiki.org/index.php?title=Template:Deadliest_United_States_hurricanes&amp;diff=3922120"/>
		<updated>2015-02-07T22:48:11Z</updated>

		<summary type="html">&lt;p&gt;192.55.54.42: doc&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!-- Note: if you remove a hurricane from this list, edit that hurricane's article to remove this template from it. --&amp;gt;{|class=&amp;quot;wikitable&amp;quot; align=&amp;quot;{{{align|right}}}&amp;quot; style=&amp;quot;margin:{{#ifeq:{{{align}}}|right|0 0 0.5em 1em|0 1em 0.5em 0}};&amp;quot;&lt;br /&gt;
|+'''Deadliest United States hurricanes'''&lt;br /&gt;
|-&lt;br /&gt;
! Rank&lt;br /&gt;
! Hurricane&lt;br /&gt;
! Season&lt;br /&gt;
! Fatalities&lt;br /&gt;
|-&lt;br /&gt;
! 1&lt;br /&gt;
| [[1900 Galveston hurricane|&amp;quot;Galveston&amp;quot;]]&lt;br /&gt;
| [[1900 Atlantic hurricane season|1900]]&lt;br /&gt;
| 8,000–12,000†&lt;br /&gt;
|-&lt;br /&gt;
! 2&lt;br /&gt;
| [[1928 Okeechobee hurricane|&amp;quot;Okeechobee&amp;quot;]]&lt;br /&gt;
| [[1928 Atlantic hurricane season|1928]]&lt;br /&gt;
| 2,500+†&lt;br /&gt;
|-&lt;br /&gt;
! 3&lt;br /&gt;
| [[Hurricane Katrina|Katrina]]&lt;br /&gt;
| [[2005 Atlantic hurricane season|2005]]&lt;br /&gt;
| 1,836&lt;br /&gt;
|-&lt;br /&gt;
! 4&lt;br /&gt;
| [[1893 Cheniere Caminada hurricane|&amp;quot;Cheniere Caminada&amp;quot;]]&lt;br /&gt;
| [[1893 Atlantic hurricane season|1893]]&lt;br /&gt;
| 1,100–1,400*&lt;br /&gt;
|-&lt;br /&gt;
! 5&lt;br /&gt;
| [[1893 Sea Islands hurricane|&amp;quot;Sea Islands&amp;quot;]]&lt;br /&gt;
| [[1893 Atlantic hurricane season|1893]]&lt;br /&gt;
| 1,000–2,000†&lt;br /&gt;
|-&lt;br /&gt;
! 6&lt;br /&gt;
| [[1919 Florida Keys hurricane|&amp;quot;Florida Keys&amp;quot;]]&lt;br /&gt;
| [[1919 Atlantic hurricane season|1919]]&lt;br /&gt;
| 778&lt;br /&gt;
|-&lt;br /&gt;
! 7&lt;br /&gt;
| [[1881_Atlantic_hurricane_season#Hurricane_Five|&amp;quot;Georgia&amp;quot;]]&lt;br /&gt;
| [[1881 Atlantic hurricane season|1881]]&lt;br /&gt;
| 700†&lt;br /&gt;
|-&lt;br /&gt;
! 8&lt;br /&gt;
| [[Hurricane Audrey|Audrey]]&lt;br /&gt;
| [[1957 Atlantic hurricane season|1957]]&lt;br /&gt;
| 416&lt;br /&gt;
|-&lt;br /&gt;
! 9&lt;br /&gt;
| [[1935 Labor Day hurricane|&amp;quot;Labor Day&amp;quot;]]&lt;br /&gt;
| [[1935 Atlantic hurricane season|1935]]&lt;br /&gt;
| 408&lt;br /&gt;
|-&lt;br /&gt;
! 10&lt;br /&gt;
| [[1856 Last Island hurricane|&amp;quot;Last Island&amp;quot;]]&lt;br /&gt;
| [[1850–1859_Atlantic_hurricane_seasons#1856_Atlantic_hurricane_season|1856]]&lt;br /&gt;
| 400†&lt;br /&gt;
|-&lt;br /&gt;
!colspan=&amp;quot;4&amp;quot;| †estimated total&amp;lt;br&amp;gt; Reference: Deadliest US hurricanes&amp;lt;ref name=&amp;quot;Dead 2011&amp;quot;&amp;gt;{{cite techreport|url=http://www.nhc.noaa.gov/pdf/nws-nhc-6.pdf|title=The deadliest, costliest and most intense United States tropical cyclones from 1851 to 2010 (and other frequently requested hurricane facts)|page=47|accessdate=August 10, 2011|date=August 10, 2011|type=NOAA Technical Memorandum NWS NHC-6|publisher=National Oceanic and Atmospheric Administration|author1=Blake, Eric S|author2=Landsea, Christopher W|author3=Gibney, Ethan J|author4=National Climatic Data Center|author5=National Hurricane Center}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;noinclude&amp;gt;{{documentation|content=&lt;br /&gt;
{{Template reference list}}&lt;br /&gt;
[[Category:Atlantic hurricane templates|{{PAGENAME}}]]&lt;br /&gt;
}}&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>192.55.54.42</name></author>
		
	</entry>
	<entry>
		<id>https://blackwiki.org/index.php?title=Template:Cite_DVD_notes/sandbox&amp;diff=3426202</id>
		<title>Template:Cite DVD notes/sandbox</title>
		<link rel="alternate" type="text/html" href="https://blackwiki.org/index.php?title=Template:Cite_DVD_notes/sandbox&amp;diff=3426202"/>
		<updated>2015-02-07T14:39:37Z</updated>

		<summary type="html">&lt;p&gt;192.55.54.42: sync&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;includeonly&amp;gt;{{#invoke:citation/CS1|citation&lt;br /&gt;
|CitationClass=DVD-notes&lt;br /&gt;
}}&amp;lt;/includeonly&amp;gt;&amp;lt;noinclude&amp;gt;&lt;br /&gt;
{{documentation}}&lt;br /&gt;
[[Category:Lua-based templates]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>192.55.54.42</name></author>
		
	</entry>
	<entry>
		<id>https://blackwiki.org/index.php?title=Template:Citation/core/doc&amp;diff=3417987</id>
		<title>Template:Citation/core/doc</title>
		<link rel="alternate" type="text/html" href="https://blackwiki.org/index.php?title=Template:Citation/core/doc&amp;diff=3417987"/>
		<updated>2015-02-07T13:23:32Z</updated>

		<summary type="html">&lt;p&gt;192.55.54.42: /* Templates using this 'engine' */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{documentation subpage}}&lt;br /&gt;
&amp;lt;!-- EDIT TEMPLATE DOCUMENTATION BELOW THIS LINE --&amp;gt;&lt;br /&gt;
{{esoteric}}&lt;br /&gt;
{{high-risk|40,000}}&lt;br /&gt;
&lt;br /&gt;
== About this template ==&lt;br /&gt;
&lt;br /&gt;
[[Template:Citation/core]] can be thought of as an engine producing consistent output for Wikipedia's citations.  Templates such as {{tl|Citation}} provide this core template with a list of parameters, which it uses to produce a formatted text (HTML) output, which contains embedded [[COinS]] metadata. This metadata allows many readers to find cited references more easily, or to extract their details to a [[reference manager]].&lt;br /&gt;
&lt;br /&gt;
The presence of a central template makes individual citation templates simpler to code and amend, and produces a consistent look throughout the encyclopaedia.&lt;br /&gt;
&lt;br /&gt;
== Templates using this 'engine' ==&lt;br /&gt;
&lt;br /&gt;
Changes to this central template can affect the output of several 'upstream' templates. A list of templates directly using citation/core is provided below for testing purposes. There are hundreds of templates that use these templates as meta-templates.&lt;br /&gt;
*[[Template:Cite arXiv]]&lt;br /&gt;
*[[Template:Cite episode]]&lt;br /&gt;
*[[Template:Cite ship register]] (a [[Help:Citation Style 2|CS2]] template)&lt;br /&gt;
*[[Template:Cite IETF]]&lt;br /&gt;
*[[Template:Cite mailing list]]&lt;br /&gt;
*[[Template:Cite map]]&lt;br /&gt;
*[[Template:Cite report]]&lt;br /&gt;
*[[Template:Cite serial]]&lt;br /&gt;
*[[Template:Cite wikisource]]&lt;br /&gt;
&lt;br /&gt;
These templates have been converted to use [[Module:Citation/CS1]] so no longer use {{tlx|citation/core}}&lt;br /&gt;
*[[Template:Citation]]&lt;br /&gt;
*[[Template:Cite AV media]]&lt;br /&gt;
*[[Template:Cite book]]&lt;br /&gt;
*[[Template:Cite conference]]&lt;br /&gt;
*[[Template:Cite DVD notes]]&lt;br /&gt;
*[[Template:Cite encyclopedia]]&lt;br /&gt;
*[[Template:Cite interview]]&lt;br /&gt;
*[[Template:Cite journal]]&lt;br /&gt;
*[[Template:Cite manual]] – redirect to {{tlx|cite book}}&lt;br /&gt;
*[[Template:Cite newsgroup]]&lt;br /&gt;
*[[Template:Cite news]]&lt;br /&gt;
*[[Template:Cite press release]]&lt;br /&gt;
*[[Template:Cite sign]]&lt;br /&gt;
*[[Template:Cite speech]]&lt;br /&gt;
*[[Template:Cite techreport]]&lt;br /&gt;
*[[Template:Cite thesis]]&lt;br /&gt;
*[[Template:Cite web]]&lt;br /&gt;
&lt;br /&gt;
== Parameter details ==&lt;br /&gt;
&lt;br /&gt;
Note that the examples below are common uses of each parameter, intended to help editors understand the functioning of this template.  In the most part, there is nothing wrong with passing different data to any of the parameters below if it produces the output that is desired.  The exception is in parameters which are associated with a [[COinS]] field— these parameters are indicated by ⊗.&lt;br /&gt;
&lt;br /&gt;
*{{para|AccessDate}} date when the {{para|URL}} was accessed. Should not be wikilinked.&lt;br /&gt;
* archive parameters ''(if used, must be used both of them together)''&lt;br /&gt;
**{{para|ArchiveURL}} the URL of an [[Web archiving|archived]] copy of a web page, if (or in case) the url becomes unavailable.  Typically used to refer to services like [[WebCite]] and [[Internet Archive|Archive.org]].&lt;br /&gt;
** {{para|ArchiveDate}} date when the item was archived. Should not be wikilinked.&lt;br /&gt;
*{{para|OriginalURL}} If an archived URL is provided elsewhere, the original URL should be specified here.&lt;br /&gt;
*{{para|amp}} When set to any value, changes the separator between the last two names in lists of authors to an ampersand (&amp;amp;). Defaults to a semicolon and space(; ), else {{para|AuthorSep}} if set.&lt;br /&gt;
* ⊗ {{para|ARXIV}} [[ArXiv]] ID.&lt;br /&gt;
* ⊗ {{para|ASIN}} [[Amazon Standard Identification Number]].&lt;br /&gt;
* ⊗ {{para|At}} page reference within the source.&lt;br /&gt;
*{{para|Authorlink1}} title of an existing Wikipedia article about the first author.&lt;br /&gt;
*{{para|Authorlink2}}, {{para|Authorlink3}}, ..., {{para|Authorlink8}} title of an existing Wikipedia article about up to seven additional authors.&lt;br /&gt;
*{{para|AuthorMask}} Primarily intended for use in bibliographies for some styles where multiple works by a single author are listed. It replaces the name of the first author with a strike-thru dash (—) AuthorMask em in length enclosed in {{tag|del|o}} tags. If {{para|AuthorMask|1}} then the dash will be one em in length and so on. Set AuthorMask to a text value to display a word instead:– for example, 'with'. You must still include the parameters for all authors for metadata purposes. Do not use in a list generated by {{tl|reflist}} or {{tag|references|s}} as there is no control as to the order that references will display.&lt;br /&gt;
*{{para|AuthorSep}} Separator between author names; defaults to semicolon (;).&lt;br /&gt;
* ⊗ {{para|BIBCODE}} A [[Bibcode]] ID.&lt;br /&gt;
*{{para|Citation class}} adds the specified HTML class to the span that encloses the citation. The name must be one word (separate words are separate classes) and must meet the name rules.&amp;lt;ref&amp;gt;{{Cite web|title=HTML class Attribute|url=http://www.w3schools.com/tags/att_standard_class.asp|work=w3schools.com}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
* ⊗ {{para|DOI}} [[Digital object identifier]].&lt;br /&gt;
* ⊗ {{para|Date}} date of the authorship, if different from date of publication.&lt;br /&gt;
*{{para|DeadURL}} indicates if the original link is [[WP:LINKROT|dead]] or live ({{para|DeadURL|no}}). Used to change the main citation link when {{para|ArchiveURL}} is set.&lt;br /&gt;
*{{para|DoiBroken}} Date the DOI is broken&lt;br /&gt;
* ⊗ {{para|Edition}} number or name of the edition, if not the first; for example: {{para|Edition|2nd.}}&lt;br /&gt;
*{{para|EditorGiven1}} first editor's first or given name(s).&lt;br /&gt;
*{{para|EditorGiven2}}, {{para|EditorGiven3}} second and third editors’ first or given name(s).&lt;br /&gt;
*{{para|EditorSurname1}} first editor's surname or last name.&lt;br /&gt;
*{{para|EditorSurname2}}, {{para|EditorSurname3}}, {{para|EditorSurname4}} second, third, and fourth editors’ surname or last name. The fourth is not actually used, but causes 'et al.' to be generated.&lt;br /&gt;
*{{para|Editorlink1}} title of an existing Wikipedia article about the first editor.&lt;br /&gt;
*{{para|Editorlink2}}, {{para|Editorlink3}} title of existing Wikipedia articles about the second and third editors.&lt;br /&gt;
*{{para|format}} file format of the source, if not the common format. Or; &amp;quot;Free full text&amp;quot;, &amp;quot;abstract&amp;quot;, or similar descriptor&lt;br /&gt;
* ⊗ {{para|Given1}} first author's first or given name(s).&lt;br /&gt;
* ⊗ {{para|Given2}}, {{para|Given3}}, ..., {{para|Given8}} up to seven additional authors' first or given name(s).&lt;br /&gt;
*{{para|ID}} miscellaneous identifier, other than {{para|DOI}}, {{para|ISBN}}, {{para|ISSN}}, {{para|OCLC}}, {{para|PMID}}, or {{para|PMC}}.&lt;br /&gt;
* ⊗ {{para|ISBN}}  [[International Standard Book Number]].&lt;br /&gt;
* ⊗ {{para|ISSN}} [[International Standard Serial Number]] identifying the periodical.&lt;br /&gt;
* ⊗ {{para|IncludedWorkTitle}} Specific title, to be displayed in quotation marks.  Contrast with {{para|Title}}, which is displayed in italics.  In some cases (e.g. [[Template:Cite web]]) it may be desirable to use IncludedWorkTitle for the title, and not use the Title parameter at all.&lt;br /&gt;
* ⊗ {{para|IncludedWorkURL}} [[Uniform Resource Locator|URL]] of the contribution or chapter, or other included work.&lt;br /&gt;
* ⊗ {{para|Issue}} issue number of the periodical.&lt;br /&gt;
* ⊗ {{para|JFM}} [[Jahrbuch über die Fortschritte der Mathematik]]&lt;br /&gt;
* ⊗ {{para|JSTOR}} [[JSTOR]] ID.&lt;br /&gt;
*{{para|language}} specifies the language in which the source is written, if not English.&lt;br /&gt;
* {{para|laysummary}} Summary of the source in a [[layman]]-friendly journal - for instance a BBC news article about a paper in [[Nature (journal)|Nature]].&lt;br /&gt;
** {{para|laydate}} Date of a lay summary.&lt;br /&gt;
** {{para|laysource}} Name of the source, such as the magazine or journal.&lt;br /&gt;
* ⊗ {{para|LCCN}} [[Library of Congress Control Number]] ID.&lt;br /&gt;
* ⊗ {{para|MR}} [[Mathematical Reviews]] ID.&lt;br /&gt;
*{{para|NameSep}} Separator between last and first names; defaults to a comma and space (, ).&lt;br /&gt;
* ⊗ {{para|OCLC}}[[Online Computer Library Center]] ID number.&lt;br /&gt;
* ⊗ {{para|OL}} [[Open Library]] ID.&lt;br /&gt;
* ⊗ {{para|OSTI}} [[Office of Scientific and Technical Information]] ID.&lt;br /&gt;
*{{para|Other}} Other details to be inserted in a particular place.&lt;br /&gt;
* ⊗ {{para|PMC}} [[PubMed Central]] article number for full-text free repository of an article.&lt;br /&gt;
* ⊗ {{para|PMID}} [[PMID|PubMed Unique Identifier]].&lt;br /&gt;
*{{para|Periodical}} name of the periodical, journal, or magazine.  This parameter controls whether or not the template will generate a citation in the style appropriate to a periodical, journal, magazine, or other serial publication. When set, {{para|Publisher}} and {{para|PublicationPlace}} are formatted in parentheses.&lt;br /&gt;
*{{para|Place}} place where the item was created (outputs &amp;quot;written at &amp;lt;var&amp;gt;location&amp;lt;/var&amp;gt;&amp;quot;; this parameter should not be used for location of publication; see {{para|PublicationPlace}}, below.&lt;br /&gt;
*{{para|PublicationDate}} date of publication.&lt;br /&gt;
* ⊗ {{para|PublicationPlace}} city of publication.&lt;br /&gt;
* ⊗ {{para|Publisher}} name of the publisher.&lt;br /&gt;
*{{para|quote}} text to be quoted from the source. If supplied, this is enclosed in double-quotes.&lt;br /&gt;
*{{para|PS}} postscript terminating the citation. This is empty by default.&lt;br /&gt;
*{{para|Ref}} A reference name - if the citation is referred to using the [[Template:Harv|Harvard referencing suite of templates]].&lt;br /&gt;
* ⊗ {{para|RFC}} [[Request for Comments]] ID.&lt;br /&gt;
*{{para|Sep}} specifies the punctuation mark used to separate fields. This usually defaults to a period, but may occasionally be a comma.  For technical reasons, the template will malfunction if a semicolon is passed as a separator.  To circumvent this, the calling template should encode semicolons:&amp;lt;br/&amp;gt;&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;|Sep = {{#ifeq:{{{separator}}}|;|&amp;amp;amp;#059;|{{{separator|!}}}}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;Replace the exclamation mark with a default separator, if one different to a period is desired.&lt;br /&gt;
* ⊗ {{para|Series}} series of which this periodical is a part.&lt;br /&gt;
* ⊗ {{para|SSRN}} [[Social Science Research Network]] ID.&lt;br /&gt;
* ⊗ {{para|Surname1}} first author's surname or last name.&lt;br /&gt;
* ⊗ {{para|Surname2}}, {{para|Surname3}}, ..., {{para|Surname9}} up to eight additional authors’ surnames or last names. The ninth is not actually used, but causes ''et al.'' to be generated.&lt;br /&gt;
* ⊗ {{para|Title}} Title, to be displayed in italics after {{para|IncludedWorkTitle}}.  Used, for example, when citing the title of a book; the chapter title would be passed to IncludedWorkTitle&lt;br /&gt;
* {{para|template doc demo}} The archive parameters have error checking to ensure that all the required parameters are included, else {{tl|citation error}} is invoked. On errors, main, help and template pages are placed into [[:Category:Articles with incorrect citation syntax]]. Set {{para|template doc demo|true}} to disable categorization.&lt;br /&gt;
*{{para|TitleNote}} appears after Title; shows only if Title and Periodical are defined.&lt;br /&gt;
*{{para|TitleType}} specific type of item cited. Example: PhD thesis. Appears in parentheses immediately after Title or TransTitle.&lt;br /&gt;
*{{para|TransItalic}} Translated italicized title, in case the original title is in a foreign language. Can be used in conjunction with TransTitle, e.g. for book and chapter title, respectively. This translated string will appear in square brackets, following the italicized book title, with the same URL link.&lt;br /&gt;
*{{para|TransTitle}} Translated title, in case the original title is in a foreign language. The translated title will appear inside square brackets, enclosed within the quotation marks of the IncludedWorkTitle.&lt;br /&gt;
*{{para|Trunc}} Sets the number of authors to display before ''et al.'' is shown.&lt;br /&gt;
* ⊗ {{para|URL}} [[Uniform Resource Locator]] of an online location where the article can be found.&lt;br /&gt;
* ⊗ {{para|Volume}} volume number of a multi-volume book or compilation.&lt;br /&gt;
*{{para|YearNote}} Note to accompany the year.  Example: First published 1886.&lt;br /&gt;
*{{para|Year}} year of authorship or publication.&lt;br /&gt;
* ⊗ {{para|ZBL}} [[Zentralblatt MATH]] ID.&lt;br /&gt;
&lt;br /&gt;
== Supporting CSS ==&lt;br /&gt;
&lt;br /&gt;
Rules are defined in [[MediaWiki:Common.css]] to control the appearance of citations.&lt;br /&gt;
&lt;br /&gt;
The raw URL is rendered at the end of the citation, but is hidden except when printed.&lt;br /&gt;
&amp;lt;source lang=&amp;quot;css&amp;quot;&amp;gt;&lt;br /&gt;
/* For linked citation numbers and document IDs, where&lt;br /&gt;
   the number need not be shown on a screen or a handheld,&lt;br /&gt;
   but should be included in the printed version */&lt;br /&gt;
@media screen, handheld {&lt;br /&gt;
    .citation *.printonly {&lt;br /&gt;
        display: none;&lt;br /&gt;
    }&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
{{reflist}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;includeonly&amp;gt;&lt;br /&gt;
[[Category:Citation templates| ]]&lt;br /&gt;
&lt;br /&gt;
[[be:Шаблон:Citation/core]]&lt;br /&gt;
[[bn:টেমপ্লেট:Citation/core]]&lt;br /&gt;
[[cv:Шаблон:Citation/core]]&lt;br /&gt;
[[diq:Şablon:Citation/core]]&lt;br /&gt;
[[es:Plantilla:Obra citada/núcleo]]&lt;br /&gt;
[[eu:Txantiloi:Erreferentzia/oinarria]]&lt;br /&gt;
[[id:Templat:Citation/core]]&lt;br /&gt;
[[ja:Template:Citation/core]]&lt;br /&gt;
[[gl:Modelo:Obra citada/núcleo]]&lt;br /&gt;
[[he:תבנית:Citation/core]]&lt;br /&gt;
[[hy:Կաղապար:Citation/core]]&lt;br /&gt;
[[km:ទំព័រគំរូ:Citation/core]]&lt;br /&gt;
[[la:Formula:Citation/core]]&lt;br /&gt;
[[lez:Шаблон:Citation/core]]&lt;br /&gt;
[[mk:Шаблон:Цитирање/core]]&lt;br /&gt;
[[nn:Mal:Citation/core0]]&lt;br /&gt;
[[no:Mal:Citation/core]]&lt;br /&gt;
[[or:ଛାଞ୍ଚ:Citation/core]]&lt;br /&gt;
[[os:Шаблон:Citation/core]]&lt;br /&gt;
[[pt:Predefinição:Citation/core]]&lt;br /&gt;
[[ro:Format:Citation/core]]&lt;br /&gt;
[[ru:Шаблон:Citation/core]]&lt;br /&gt;
[[sco:Template:Citation/core]]&lt;br /&gt;
[[si:සැකිල්ල:Citation/core]]&lt;br /&gt;
[[sk:Šablóna:Citácia Harvard/core]]&lt;br /&gt;
[[sl:Predloga:Citat/jedro]]&lt;br /&gt;
[[su:Citakan:Citation/core]]&lt;br /&gt;
[[sv:Mall:Citation/core]]&lt;br /&gt;
[[sw:Kigezo:Citation/core]]&lt;br /&gt;
[[tg:Шаблон:Citation/core]]&lt;br /&gt;
[[th:แม่แบบ:Citation/core]]&lt;br /&gt;
[[tl:Suleras:Citation/core]]&lt;br /&gt;
[[tr:Şablon:Kaynak/iç]]&lt;br /&gt;
[[uk:Шаблон:Citation/core]]&lt;br /&gt;
[[vi:Bản mẫu:Chú thích/nhân]]&lt;br /&gt;
[[yo:Àdàkọ:Citation/core]]&lt;br /&gt;
[[zh:Template:Citation/core]]&lt;br /&gt;
[[fa:الگو:Citation/core]]&lt;br /&gt;
&amp;lt;/includeonly&amp;gt;&lt;/div&gt;</summary>
		<author><name>192.55.54.42</name></author>
		
	</entry>
	<entry>
		<id>https://blackwiki.org/index.php?title=Template:Cite_newsgroup/sandbox&amp;diff=3441229</id>
		<title>Template:Cite newsgroup/sandbox</title>
		<link rel="alternate" type="text/html" href="https://blackwiki.org/index.php?title=Template:Cite_newsgroup/sandbox&amp;diff=3441229"/>
		<updated>2015-02-07T13:22:23Z</updated>

		<summary type="html">&lt;p&gt;192.55.54.42: sync&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;includeonly&amp;gt;{{#invoke:citation/CS1|citation&lt;br /&gt;
|CitationClass=newsgroup&lt;br /&gt;
}}&amp;lt;/includeonly&amp;gt;&amp;lt;noinclude&amp;gt;&lt;br /&gt;
{{documentation}}&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>192.55.54.42</name></author>
		
	</entry>
	<entry>
		<id>https://blackwiki.org/index.php?title=Template:Cite_encyclopedia/sandbox&amp;diff=3438076</id>
		<title>Template:Cite encyclopedia/sandbox</title>
		<link rel="alternate" type="text/html" href="https://blackwiki.org/index.php?title=Template:Cite_encyclopedia/sandbox&amp;diff=3438076"/>
		<updated>2015-02-07T13:21:24Z</updated>

		<summary type="html">&lt;p&gt;192.55.54.42: sync&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;includeonly&amp;gt;{{#invoke:citation/CS1|citation&lt;br /&gt;
|CitationClass=encyclopaedia&lt;br /&gt;
}}&amp;lt;/includeonly&amp;gt;&amp;lt;noinclude&amp;gt;&lt;br /&gt;
{{documentation}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Lua-based templates]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>192.55.54.42</name></author>
		
	</entry>
	<entry>
		<id>https://blackwiki.org/index.php?title=Template:Cite_news/sandbox&amp;diff=3441001</id>
		<title>Template:Cite news/sandbox</title>
		<link rel="alternate" type="text/html" href="https://blackwiki.org/index.php?title=Template:Cite_news/sandbox&amp;diff=3441001"/>
		<updated>2015-02-07T13:20:35Z</updated>

		<summary type="html">&lt;p&gt;192.55.54.42: sync&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;includeonly&amp;gt;{{#invoke:citation/CS1|citation&lt;br /&gt;
|CitationClass=news&lt;br /&gt;
}}&amp;lt;/includeonly&amp;gt;&amp;lt;noinclude&amp;gt;&lt;br /&gt;
{{documentation}}&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>192.55.54.42</name></author>
		
	</entry>
</feed>