Jump to content

This site is currently in alpha, so you will run into rough edges.

Please send feedback or ideas to connect@deeptech.wiki

Module:TEMPLATENAME

From The Deep Tech Wiki
Revision as of 05:12, 6 June 2024 by w>Pppery (Protected "Module:TEMPLATENAME": High-risk template or module ([Edit=Require template editor access] (indefinite) [Move=Require template editor access] (indefinite)))
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Usage

{{#invoke:TEMPLATENAME|main}}

This module returns the name of the page it is being transcluded from. This differs from {{FULLPAGENAME}} which returns the name of the currently viewed page even if it is called from a template. To use this doc page as an example, {{#invoke:TEMPLATENAME|main}}Module:TEMPLATENAME/doc while {{FULLPAGENAME}}Module:TEMPLATENAME.

To get the same behavior for variables other than {{FULLPAGENAME}}, this module can be passed as a parameter to them as in: {{PAGENAME:{{#invoke:TEMPLATENAME|main}}}}TEMPLATENAME/doc.

See also



local p = {}

function p.main(frame)
	return frame:getParent():getTitle()
end

return p