Modul:Ns has subpages/dok
Udseende
Dette er dokumentationsundersiden til Modul:Ns has subpages. Denne side indeholder information om brug, kategorier samt andet indhold, som ikke er en del af den oprindelige modulside. |
Dette modul finder ud af, om en bestemt navnerum side kan have undersider.
Brug
[rediger kildetekst]Fra wikitekst
[rediger kildetekst]From wikitext this module must be used via the {{ns has subpages}} template. Please see the template page for documentation.
Fra Lua
[rediger kildetekst]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.