Munurin millum rættingarnar hjá "Module:Ns has subpages/doc"

Frá Wikipedia, hin frælsa alfrøðin
Content deleted Content added
Stovnaði síðu við "This module finds whether a given namespace can have subpages. == Usage == === From wikitext === From wikitext this module must be used via the {{tl|ns has su..."
 
Xqbot (kjak | íkøst)
s Bot: Erstatt forældet <source> -tag og parameteren "enclose" [https://lists.wikimedia.org/pipermail/wikitech-ambassadors/2020-April/002284.html]
 
Linja 12: Linja 12:


Load the module:
Load the module:
<source lang="lua">
<syntaxhighlight lang="lua">
local mNsHasSubpages = require('Module:Ns has subpages')
local mNsHasSubpages = require('Module:Ns has subpages')
</syntaxhighlight>
</source>


The subpage information can be found with the ._main function:
The subpage information can be found with the ._main function:
<source lang="lua">
<syntaxhighlight lang="lua">
mNsHasSubpages._main(ns, frame)
mNsHasSubpages._main(ns, frame)
</syntaxhighlight>
</source>


* <var>ns</var> is the namespace name, number, or a page name. It defaults to the current namespace.
* <var>ns</var> is the namespace name, number, or a page name. It defaults to the current namespace.

Seinasta endurskoðan sum var 22. apr 2020 kl. 16:38

This module finds whether a given namespace can have subpages.

Usage[rætta wikitekst]

From wikitext[rætta wikitekst]

From wikitext this module must be used via the {{ns has subpages}} template. Please see the template page for documentation.

From Lua[rætta wikitekst]

Usually Lua modules should use mw.site.namespaces[namespace].hasSubpages rather than this module. But if you have a good reason, it can be accessed like this:

Load the module:

local mNsHasSubpages = require('Module:Ns has subpages')

The subpage information can be found with the ._main function:

mNsHasSubpages._main(ns, frame)
  • ns is the namespace name, number, or a page name. It defaults to the current namespace.
  • frame is a frame object with which we can call frame:callParserFunction if necessary. This is optional, and intended for internal use.