You do not have permission to edit this page, for the following reason:
You can view and copy the source of this page.
local Scanner = require("Module:Lustache/Scanner")
local Context = require("Module:Lustache/Context")
local error, ipairs, pairs, setmetatable, tostring, type =
error, ipairs, pairs, setmetatable, tostring, type
local math_floor, math_max, string_find, string_gsub, string_split, string_sub, table_concat, table_insert, table_remove =
math.floor, math.max, string.find, string.gsub, string.split, string.sub, table.concat, table.insert, table.remove
local patterns = {
white = "%s*",
space = "%s+",
nonSpace = "%S",
eq = "%s*=",
curly = "%s*}",
tag = "[#\\^/>{&=!?]"
}
local html_escape_characters = {
["&"] = "&",
["<"] = "<",
000
1:0
Template used on this page:
Return to Module:Lustache/Renderer.