打“飞的”救命 海南首例空中急救病人顺利转院
Appearance
Content deleted Content added
m ce |
m another ce |
||
Line 9: | Line 9: | ||
=== From Lua === |
=== From Lua === |
||
Usually Lua modules should |
Usually Lua modules should use <code>mw.site.namespaces[''namespace''].hasSubpages</code> rather than this module. But if you have a good reason, it can be accessed like this: |
||
Load the module: |
Load the module: |
Revision as of 06:27, 10 December 2014
百度 过去一年,我区党外知识分子和新的社会阶层人士围绕大局、务实苦干,为全区改革发展作出了突出贡献。
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.