You do not have permission to edit this page, for the following reason:
You can view and copy the source of this page.
local p = {}
local CHAR_EQUAL = string.byte("=")
local CHAR_OPEN_BRACE = string.byte("{")
local CHAR_PIPE = string.byte("|")
local CHAR_CLOSE_BRACE = string.byte("}")
local CHAR_OPEN_BRACKET = string.byte("[")
local CHAR_CLOSE_BRACKET = string.byte("]")
local CHAR_GREATER_THAN = string.byte(">")
local CHAR_LOWER_THAN = string.byte("<")
local CHAR_SLASH = string.byte("/")
local FormatParser = {} -- methods
local FormatParserMetatable = {
__index = FormatParser,
}
function p.getTemplateArgs(page, options)
options = options or {}
local rawContent = ''
if options.custom then
rawContent = page
else
local title = mw.title.makeTitle(options.namespace or '', page)
000
1:0
Templates used on this page:
Return to Module:Parser.