Module:Wikitext Parsing
![]() | This Lua module is used on approximately 17,800,000 pages, or roughly 28% of all pages. To avoid major disruption and server load, any changes should be tested in the module's /sandbox or /testcases subpages, or in your own module sandbox. The tested changes can be added to this page in a single edit. Consider discussing changes on the talk page before implementing them. |
![]() | This module can only be edited by administrators because it is transcluded onto one or more cascade-protected pages. |
This module provides some functions to help with the potential complex situation involved in modules like Module:Template parameter value, which intend to process the raw wikitext of a page and want to respect nowiki tags or similar reliably. This module is designed only to be called by other modules.
PrepareText
![]() | This module is rated as ready for general use. It has reached a mature form and is thought to be relatively bug-free and ready for use wherever appropriate. It is ready to mention on help pages and other Wikipedia resources as an option for new users to learn. To reduce server load and bad output, it should be improved by sandbox testing rather than repeated trial-and-error editing. |
![]() | This module is subject to page protection. It is a highly visible module in use by a very large number of pages, or is substituted very frequently. Because vandalism or mistakes would affect many pages, and even trivial editing might cause substantial load on the servers, it is protected from editing. |
PrepareText(text, keepComments)
will run any content within certain tags that disable processing (<nowiki>
, <pre>
, <syntaxhighlight>
, <source>
, <math>
) through mw.text.nowiki and remove HTML comments to avoid irrelevant text being processed by modules, allowing tricky syntax to be parsed through more basic means such as %b{}
.
If the second parameter, keepComments
, is set to true, the content of HTML comments will be passed through mw.text.nowiki instead of being removed entirely.
Any code using this function directly should consider using mw.text.decode to correct the output at the end if part of the processed text is returned, though this will also decode any input that was encoded but not inside a no-processing tag, which likely isn't a significant issue but still something worth considering.
ParseTemplates
![]() | This module is rated as beta, and is ready for widespread use. It is still new and should be used with some caution to ensure the results are as expected. |
![]() | This module is subject to page protection. It is a highly visible module in use by a very large number of pages, or is substituted very frequently. Because vandalism or mistakes would affect many pages, and even trivial editing might cause substantial load on the servers, it is protected from editing. |
ParseTemplates(InputText, dontEscape)
will attempt to parse all {{Templates}}
on a page, handling multiple factors such as [[Wikilinks]]
and {{{Variables}}}
among other complex syntax. Due to the complexity of the function, it is considerably slow, and should be used carefully. The function returns a list of template objects in order of appearance, which have the following properties:
- Args: A key-value set of arguments, not in order
- ArgOrder: A list of keys in the order they appear in the template
- Children: A list of template objects that are contained within the existing template, in order of appearance. Only immediate children are listed
- Name: The name of the template
- Text: The raw text of the template
If the second parameter, dontEscape
, is set to true, the inputted text won't be ran through the PrepareText
function.
require("strict")
local p = {}
--Helper functions
local function startswith(text, subtext)
return string.sub(text, 1, #subtext) == subtext
end
local function endswith(text, subtext)
return string.sub(text, -#subtext, -1) == subtext
end
local function allcases(s)
return s:gsub("%a", function(c)
return "["..c:upper()..c:lower().."]"
end)
end
--[[ Implementation notes
---- NORMAL HTML TAGS ----
Tags are very strict on how they want to start, but loose on how they end.
The start must strictly follow <[tAgNaMe] with no room for whitespace, but may
then flow as they want afterwards, making <div\nclass\n=\n"\nerror\n"\n> valid
There's no sense of escaping < or >
E.g.
<div class="error\>"> will end at the first \> despite it being inside a quote
<div class="<span class="error">error</span>"> will not process the larger div
If a tag has no end, it will consume all text instead of not processing
---- NOPROCESSING TAGS (nowiki, pre, syntaxhighlight, source) ----
SIDENOTE: For this specific paragraph, <pre> functions like a normal tag, so the
rules from above apply instead.
No-Processing tags have some interesting differences to the above rules.
For example, their syntax is a lot stricter. While an opening tag appears to
follow the same set of rules, A closing tag can't have any sort of extra
formatting period. While </div a/a> is valid, </nowiki a/a> isn't - only
newlines and spaces are allowed in closing tags.
Both the content inside the tag pair and the content inside each side of the
pair is not processed. E.g. <nowiki |}}>|}}</nowiki> would have both of the |}}
escaped in practice
When something in the code is referenced to as a "NowikiTag", it means a tag
which causes wiki text to not be processed, which includes <nowiki>, <pre>,
and <syntaxhighlight>
(In most comments, <source> will not be mentioned. This is because it is the
deprecated version of <syntaxhighlight>)
Since we only care about these 3 tags, we ignore the idea of an intercepting tag
preventing processing, and just go straight for the first ending we can find
---- HTML COMMENT ----
HTML Comments are about as basic as it could get for this
Start at <!--, end at -->, no extra conditions. Simple enough
If a comment has no end, it will eat all text instead of not being processed
--]]
local validtags = {nowiki=1, pre=1, syntaxhighlight=1, source=1}
--This function expects the string to start with the tag
local function TestForNowikiTag(text)
local tagName = (string.match(text, "^<([^\n />]+)") or ""):lower()
if not validtags[tagName] then
return nil
end
local nextOpener = string.find(text, "<", 2) or -1
local nextCloser = string.find(text, ">", 2) or -1
if nextCloser > -1 and (nextOpener == -1 or nextCloser < nextOpener) then
local startingTag = string.sub(text, 1, nextCloser)
--We have our starting tag (E.g. '<pre style="color:red">')
--Now find our ending...
if endswith(startingTag, "/>") then --self-closing tag (we are our own ending)
return {
Tag = tagName,
Start = startingTag,
Content = "", End = "",
Length = #startingTag
}
elseif tagName == "pre" then
local endingTagPosition = #text+1 --<pre> consumes all text if unended
local endingTag = --no | so we just use 2 matches
string.match(text, "</[Pp][Rr][Ee]>") or
string.match(text, "</[Pp][Rr][Ee][ \t\n/][^<]*>") or ""
if endingTag ~= "" then
endingTagPosition = string.find(text, endingTag, nextCloser, true)
end
local tagContent = string.sub(text, nextCloser+1, endingTagPosition-1)
return {
Tag = tagName,
Start = startingTag,
Content = tagContent,
End = endingTag,
Length = #startingTag + #tagContent + #endingTag
}
else --<nowiki> and <syntaxhighlight> are stricter
local endingTag = string.match(text, "</"..allcases(tagName).."[ \t\n]*>")
if endingTag then
local endingTagPosition = string.find(text, endingTag, nextCloser, true)
local tagContent = string.sub(text, nextCloser+1, endingTagPosition-1)
return {
Tag = tagName,
Start = startingTag,
Content = tagContent,
End = endingTag,
Length = #startingTag + #tagContent + #endingTag
}
end
end
end
return nil
end
local function TestForComment(text) --Like TestForNowikiTag but for <!-- -->
if startswith(text, "<!--") then
local commentEnd = string.find(text, "-->", 5, true)
if commentEnd then
return {
Start = "<!--", End = "-->",
Content = string.sub(text, 5, commentEnd-1),
Length = commentEnd+2
}
else --Consumes all text if not given an ending
return {
Start = "<!--", End = "",
Content = string.sub(text, 5),
Length = #text
}
end
end
return nil
end
--[[ Implementation notes
The goal of this function is to escape all text that wouldn't be parsed if it
was preprocessed (anything in nowiki, pre, syntaxhighlight, or <!----> tags).
Using keepComments will keep all HTML comments instead of removing them. They
will still be escaped to avoid processing errors
--]]
local function EscapeEscapedText(text, keepComments) --What a name!
local newtext = ""
while text ~= "" do
local NextCheck = string.find(text,"<") --Advance to the next potential tag we care about
if not NextCheck then --Done
newtext = newtext .. text
break
end
newtext = newtext .. string.sub(text,1,NextCheck-1)
text = string.sub(text, NextCheck)
local Comment = TestForComment(text)
if Comment then
if keepComments then
newtext = newtext .. Comment.Start .. mw.text.nowiki(Comment.Content) .. Comment.End
end
text = string.sub(text, Comment.Length+1)
else
local Tag = TestForNowikiTag(text)
if Tag then
local newTagStart = "<" .. mw.text.nowiki(string.sub(Tag.Start,2,-2)) .. ">"
local newTagEnd =
Tag.End == "" and "" or --if no end tag, keep it that way
"</" .. mw.text.nowiki(string.sub(Tag.End,3,-2)) .. ">"
local newContent = mw.text.nowiki(Tag.Content)
newtext = newtext .. newTagStart .. newContent .. newTagEnd
text = string.sub(text, Tag.Length+1)
else --Nothing special, move on...
newtext = newtext .. string.sub(text, 1, 1)
text = string.sub(text, 2)
end
end
end
return newtext
end
p.TFNWT = TestForNowikiTag
p.TFC = TestForComment
p.EET = EscapeEscapedText
function p.main(...)
return "<span class='error'>See [[Module:Sandbox/Aidan9382/ExcessiveParsing/doc]] for proper usage of this module</span>"
end
return p
--[[ console
local s = [=[Hey!{{Text|<nowiki | ||>
Hey! }}
A</nowiki>|<!--AAAAA|AAA-->Should see|Shouldn't see}}]=]
local out = p.EET(s)
mw.logObject(out)
local s = [=[<!--
Hey!
-->A]=]
local out = p.TFC(s)
mw.logObject(out); mw.log(string.sub(s, 1, out.Length))
]]