Toggle menu
15
236
75
27.7K
Kenshi Wiki
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Module:Ns has subpages/doc: Difference between revisions

From Kenshi Wiki
Created page with "{{used in system}} {{Module rating|protected}} {{cascade-protected template|page=module}} 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 subpages}} template. Please see the template page for documentation. === From Lua === Usually Lua modules should use <code>mw.site.namespaces[''namespace''].hasSubpages</code> rather than this module. But if you ha..."
 
No edit summary
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{used in system}}
{{doc sub}}
{{Module rating|protected}}
{{cascade-protected template|page=module}}
This module finds whether a given [[WP:NS|namespace]] can have subpages.
This module finds whether a given [[WP:NS|namespace]] can have subpages.


Line 29: Line 27:
<includeonly>{{#ifeq:{{SUBPAGENAME}}|sandbox | |
<includeonly>{{#ifeq:{{SUBPAGENAME}}|sandbox | |
<!-- Categories below this line, please; interwikis at Wikidata -->
<!-- Categories below this line, please; interwikis at Wikidata -->
 
[[Category:Modules]]
}}</includeonly>
}}</includeonly><noinclude>
[[Category:Module documents]]
</noinclude>

Latest revision as of 01:35, 10 March 2025

This module finds whether a given namespace can have subpages.

Usage

From wikitext

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

From Lua

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.