View source for Module:Escape
Jump to navigation
Jump to search
You do not have permission to edit this page, for the following reason:
You can view and copy the source of this page.
local escape = {
char = function(self, chr, args)
args = args or {}
local safe = args.safeChr or string.char(13)
chr = tostring(chr or '\\')
self[1] = ('%s0%%s%s'):format(
('%x%s%s'):format(chr:byte(), safe, safe),
('%s%x'):format(safe, chr:byte())
)
if not self[self[1]] then
self[self[1]] = {
char = chr,
text = ('%s(.)'):format(chr),
undo = self[1]:format'(%d+)'
}
end
return args.text and self:text(args.text)
or args.undo and self:undo(args.undo, chr)
or args.kill and self:kill(args.kill)
or self
end,
exec = function(self, text, mode, newEscape)
000
1:0
Templates used on this page:
- Template:Blue (view source)
- Template:Code (view source)
- Template:Green (view source)
- Template:Para (view source)
- Template:TOC tab (view source)
- Template:Tag (view source)
- Module:Escape (view source)
- Module:Escape/doc (view source)
- Module:Escape/testcases (view source)
- Module talk:Escape/testcases (view source)
Return to Module:Escape.