Module:Redirect hatnote/doc: Difference between revisions

From the Croc Wiki, the Croc encyclopedia
Jump to navigationJump to search
Content added Content deleted
(Cleanup TfD tag detritus)
m (change source to syntaxhighlight)
Line 12: Line 12:
To use this module from Lua, first load the module.
To use this module from Lua, first load the module.


<source lang="lua">
<syntaxhighlight lang="lua">
local mRedirectHatnote = require('Module:Redirect hatnote')
local mRedirectHatnote = require('Module:Redirect hatnote')
</syntaxhighlight>
</source>


The module can then be used with the following syntax:
The module can then be used with the following syntax:


<source lang="lua">
<syntaxhighlight lang="lua">
mRedirectHatnote._redirect(redirect, data, options, titleObj)
mRedirectHatnote._redirect(redirect, data, options, titleObj)
</syntaxhighlight>
</source>


== See also ==
== See also ==

Revision as of 13:20, July 7, 2020


This module produces a hatnote for disambiguating a page that is linked to by a given redirect. It implements the {{redirect}} hatnote template.

Usage from wikitext

This module cannot be used directly from wikitext. Please use the {{redirect}} or {{redirect2}} templates instead.

Usage from Lua

To use this module from Lua, first load the module.

local mRedirectHatnote = require('Module:Redirect hatnote')

The module can then be used with the following syntax:

mRedirectHatnote._redirect(redirect, data, options, titleObj)

See also