Search Results: Module:Escape
Sorry, the article you're looking for isn't specifically available. Here are related topics:
Module:Escape
Selasa, 2021-08-17 08:23:46local escape = { char = function(self, chr, args) args = args or {} local safe = args.safeChr or string.char(13) chr = tostring(chr or '\\') self[1]...
Click to read more »Module:Escape/doc
Jumat, 2025-06-27 22:53:11designed as an way to escape strings in a customized and efficient manner. It works by replacing characters that are preceded by your escape char (or phrase)...
Click to read more »Module:Escape input/doc
Selasa, 2026-05-26 01:17:05escape_input.escape( string ) (function) Escapes a specified format string Parameter: string String with escape characters (string) Returns: Escaped string...
Click to read more »Module:Escape input
Rabu, 2026-05-27 01:00:34--- This module allows special Lua character sequences to be escaped and inserted -- as parameters in arguments. -- -- In addition to those listed on...
Click to read more »Module:Pipe escape/doc
Jumat, 2019-02-22 03:38:16Implements {{pipe escape}}...
Click to read more »Module:Escape/testcases
Jumat, 2015-01-16 03:45:13'\\\\')) end function p.test_kill500(frame) local esc = require('Module:Escape') for k = 1, 500 do local v = esc:kill(p.test_string2(), 'test') end...
Click to read more »Module:String
Selasa, 2025-08-12 06:48:56{{#invoke:String|escapePattern|pattern_string}} Parameters pattern_string: The pattern string to escape. ]] function str.escapePattern( frame ) ...
Click to read more »Module:String/sandbox
Selasa, 2025-08-12 06:46:44{{#invoke:String|escapePattern|pattern_string}} Parameters pattern_string: The pattern string to escape. ]] function str.escapePattern( frame ) ...
Click to read more »Module:Submit an edit request
Senin, 2024-12-16 22:29:26require('Module:Effective protection level')._main local escape = require("Module:String")._escapePattern local lang = mw.language.getContentLanguage() ...
Click to read more »Module:Resolve category redirect
Jumat, 2026-01-23 21:19:40gsub( rtarget, '^[Cc]ategory:', '' ) return rtarget end local function escape( text ) return string.gsub( text or '', '-', '%%-' ) --expand as needed...
Click to read more »Module:Multiformat
Senin, 2026-06-01 08:31:48local escape if nowiki then escape = function( s ) return mw.text.unstripNoWiki( s ) end else escape = require("Module:Escape input").escape end...
Click to read more »Module:Resolve category redirect/sandbox
Jumat, 2026-01-23 23:54:17gsub( rtarget, '^[Cc]ategory:', '' ) return rtarget end local function escape( text ) return string.gsub( text or '', '-', '%%-' ) --expand as needed...
Click to read more »Module:Template test case/data
Jumat, 2019-01-25 04:23:12require('Module:Template test case/config') local function escapePattern(s) s = s:gsub('%p', '%%%0') return s end -- Escape config items that need to be used as patterns...
Click to read more »Module:Sandbox/Aseleste/Indexer
Kamis, 2021-01-21 09:45:11as_key_content_function; local as_value_content_function; local as_fold_function; local escape_replacement; local unstrip_and_strip_nowiki_tags; -- exposed: categorizes...
Click to read more »Module:User:Mr. Stradivarius/String count
Minggu, 2015-02-22 10:44:32string appears on a given page. local p = {} local function escapePattern(s) -- Escape punctuation in a string so it can be used in a Lua pattern. ...
Click to read more »Module:Sandbox/Aseleste/Indexer/sandbox
Rabu, 2021-01-20 21:25:54as_key_content_function; local as_value_content_function; local as_fold_function; local escape_replacement; local unstrip_and_strip_nowiki_tags; -- exposed: categorizes...
Click to read more »Module:Submit an edit request/sandbox
Kamis, 2024-09-05 07:07:59require('Module:Effective protection level')._main local escape = require("Module:String")._escapePattern local lang = mw.language.getContentLanguage() ...
Click to read more »Module:Str find word
Senin, 2023-04-03 07:35:55%-Escape any word (character string) before feeding it into a string pattern function -- all punctuation (%p) will be %-escaped local function escape_word(word)...
Click to read more »Module:Taxon authority
Sabtu, 2019-07-06 00:50:43keyed table at the top of this module the name in the key needs to be escaped for the lua expression wildcard "." ]] p.linkBotanicalAuthorites = function(name)...
Click to read more »Module:Sandbox/Qwerfjkl/MultiTPV
Senin, 2023-01-30 03:18:32local p = {} local escape = require("Module:String")._escapePattern function trimspaces(s) return string.gsub(s, "^%s*(.-)%s*$", "%1") end local function...
Click to read more »Module:Wikitable/doc
Kamis, 2026-02-05 22:39:51other parser tag generates gibberish when one fails to escape every | and =. Moreover, escaping pipe characters with {{!}} everywhere can make for some...
Click to read more »Module:Separated entries
Senin, 2025-10-13 23:33:18local separator = args.separator -- Decode (convert to Unicode) HTML escape sequences, such as " " for space. and mw.text.decode(args.separator)...
Click to read more »Module:RedirectChecker
Jumat, 2024-11-15 02:15:40require( 'Module:Arguments' ).getArgs local delink local escapePattern = require( 'Module:String' )._escapePattern -- [[Module:RedirectChecker/config.json]]...
Click to read more »Module:Wikitext Parsing/testcases
Rabu, 2024-03-20 15:38:56convenience --Test conditions: --1) The escaped text should match our expectation for escaped text --2) The escaped text should always preprocess to the...
Click to read more »Module:Sandbox/Larivact/test
Minggu, 2019-03-03 17:31:03function escape_listmarker(char) return '&#' .. string.byte(char) .. ';' end function p.ltrim(frame) return ((frame.args[1]:gsub('[*#;:]', escape_listmarker...
Click to read more »Module:Sortkey/doc
Minggu, 2024-05-26 07:57:38This module sanitizes and escapes sortkeys so that they can be used inside the data-sort-value attribute of HTML tags in combination with table sorting...
Click to read more »Module:Item
Jumat, 2019-01-25 04:24:24local p = {} local function escape(str) return str:gsub("[|\\]", function (c) return string.format("\\%03d", c:byte()) end) end local function unescape(str)...
Click to read more »Module:Italic title
Sabtu, 2022-10-22 04:17:12format('<i>%s</i>', s) end -- Escape characters in a string that are magic in Lua patterns. -- Param: pattern - the pattern to escape -- Returns string....
Click to read more »Module:Separated entries/sandbox
Senin, 2025-10-13 23:32:53local separator = args.separator -- Decode (convert to Unicode) HTML escape sequences, such as " " for space. and mw.text.decode(args.separator)...
Click to read more »Module:String/testcases
Kamis, 2022-04-07 13:49:37'àèòàèòàèò'} }) end function p:test_escapePattern() self:preprocess_equals_many('{{#invoke:String/sandbox|escapePattern|', '}}', { {'foo', 'foo'},...
Click to read more »Module:Italic title/sandbox
Kamis, 2026-03-05 20:57:34format('<i>%s</i>', s) end -- Escape characters in a string that are magic in Lua patterns. -- Param: pattern - the pattern to escape -- Returns string....
Click to read more »Module:Unicode data/scripts/make
Kamis, 2020-03-12 02:28:30local p = {} local Array = require 'Module:Array' local function pattern_escape(str) return (str:gsub('%p', '%%%1')) end function p.make_script_name_to_code(page_name)...
Click to read more »Module:DecodeEncode
Selasa, 2023-04-18 03:18:54function p._encode( s, charset ) -- example: charset = '_&©−°\\\"\'\=' -- do escape with backslash not %; local ret if charset and charset ~= '' then ret...
Click to read more »Module:Citation/CS1/COinS
Sabtu, 2025-04-12 20:48:47-- no more URLs pattern = escape_lua_magic_chars (pattern); -- pattern is not a literal string; escape Lua's magic pattern characters ...
Click to read more »Module:StringCount
Selasa, 2026-02-24 23:10:09(standard "occurs" definition) -- Escape needle so it's treated as plain text, not a Lua pattern. local escaped = mw.ustring.gsub(needle, "([%%%^%$%(%)%...
Click to read more »Module:Excerpt
Jumat, 2026-03-06 19:56:17if full then excerpt = excerpt:gsub( Excerpt.escapeString( reference ), Excerpt.escapeString( full ), 1 ) end table.insert( fixed,...
Click to read more »Module:Infobox television episode
Rabu, 2026-06-03 14:33:30series_name_escaped, _ = get_series_name(args.series) if series_name_escaped ~= "" and (correct_title_title_parts.disambiguation == series_name_escaped or string...
Click to read more »Module:MalformedSPIs
Kamis, 2025-01-02 13:02:52local p = {} -- Helper function to escape HTML tags local function escapeHtml(str) return str :gsub("&", "&") :gsub("<", "<")...
Click to read more »Module:Link summary
Sabtu, 2026-01-03 01:00:34:gsub("{{DOMAIN}}", str._escapePattern(processed)) :gsub("{{ENCODED}}", str._escapePattern(encoded)) :gsub("{{ADVANCED}}", str._escapePattern(advanced))...
Click to read more »Module:IncrementParams
Kamis, 2022-11-03 00:53:30[%a_%-]-%s*)([1-9]%d*)(%s*[%a_%-]-%a?%s*)=', replace) -- Add pre tags and escape html etc. if the pre option is set. if frame and frame.args and frame...
Click to read more »Module:Row numbers
Minggu, 2023-03-19 01:00:13arguments tbl_str = mw.text.unstripNoWiki (args[1]); -- undo <nowiki>'s escaping of the wikitext (mw.text.decode (tbl_str); is too aggressive) tbl_str...
Click to read more »Module:Citation/CS1/COinS/sandbox
Jumat, 2025-11-21 02:45:55-- no more URLs pattern = escape_lua_magic_chars (pattern); -- pattern is not a literal string; escape Lua's magic pattern characters ...
Click to read more »Module:String2
Rabu, 2025-02-19 19:24:59getParameters -- Escape Pattern helper function so that all characters are treated as plain text, as per Module:String function p._escapePattern( pattern_str...
Click to read more »Module:X-SAMPA to IPA
Jumat, 2024-09-13 03:37:01= mw.ustring.char -- Slashes \, apostrophes ', and double quotes " are escaped with \. -- \\ = \, \' = ', \" = " local data = { ["a"] = { "a" }, ["b"]...
Click to read more »Module:Parameter validation
Jumat, 2026-05-15 20:39:27ustring.gsub( s, 'paramname', concat_and_escape( k_ar ) ) s = mw.ustring.gsub( s, 'paramandvalue', concat_and_escape( kv_ar, ' AND ' ) ) if mw...
Click to read more »Module:Key/sandbox
Sabtu, 2025-12-20 11:16:19['[[enter]]'] = '↵ [[Enter key|Enter]]', ['[[esc]]'] = '[[Esc key|Escape]]', ['[[escape]]'] = '[[Esc key|Esc]]', ['[[fn]]'] = '[[Fn key|Fn]]', ['[[home]]']...
Click to read more »Module:Infobox television episode/sandbox
Rabu, 2026-06-03 19:49:08series_name_escaped, _ = get_series_name(args.series) if series_name_escaped ~= "" and (correct_title_title_parts.disambiguation == series_name_escaped or string...
Click to read more »Module:Sandbox/User:Ssola
Minggu, 2016-01-31 01:32:35_getBoolean( new_args['plain'] or true ); if l_plain then pattern = p._escapePattern( pattern ); end local plain = false; pattern = "[" .. pattern...
Click to read more »Module:Row numbers/sandbox
Jumat, 2022-10-21 17:05:10arguments tbl_str = mw.text.unstripNoWiki (args[1]); -- undo <nowiki>'s escaping of the wikitext (mw.text.decode (tbl_str); is too aggressive) tbl_str...
Click to read more »Module:Excerpt/portals
Rabu, 2026-05-13 00:55:29local parser = require("Module:WikitextParser") local escapeString = require("Module:String")._escapePattern local yesno = require('Module:Yesno') local...
Click to read more »Module:Vital article/testcases
Rabu, 2026-02-04 01:10:58Escape suspect.svg|11px|Non-vital article]]'}, {'|page=non-article', '<span>[[:Non-article|Non-article]] </span>[[File:Escape suspect.svg|11px|Non-vital...
Click to read more »Module:ArrayList
Senin, 2025-02-03 02:13:56s:match("^%s*(.-)%s*$") end -- Escape special characters in the delimiter for pattern matching local function escapePattern(str) return str:gsub("([%^%$%(%)%%%...
Click to read more »Module:Road data/strings/USA/MN
Kamis, 2024-08-01 04:14:41nonempty sequence of characters containing no spaces. -- Also need to escape parentheses and dot with %. ["County %S+ %(MN%)%.svg"] = "blue" -- intentional...
Click to read more »Module:Lua lexer
Jumat, 2025-10-31 11:00:43pushToken('escape') newline() elseif not chars.validEscapes[char3] then pushToken('unidentified') end pushToken('escape') elseif...
Click to read more »Module:WP
Sabtu, 2022-10-22 05:02:57Returns a string where all of lua's magic characters have been escaped. This is important because functions like string.gsub() treat their pattern...
Click to read more »Module:Road data/banners/USA
Kamis, 2023-02-09 10:06:22nonempty sequence of characters containing no spaces. -- Also need to escape dot with %. ["CR %S+ jct%.svg"] = "county", ["CR %S+ jct wide%.svg"]...
Click to read more »Module:Icon/data/doc
Jumat, 2024-08-30 04:48:10here. If any of the text you add has double quotes in, you will need to escape it with backslashes like this: "My \"quoted\" image.svg". tooltip: the tooltip...
Click to read more »Module:Transclude TOC
Sabtu, 2022-10-22 16:17:38(section_name_list) do local escaped_section_name = string.gsub (section_name[1], '([%(%)%.%%%+%-%*%?%[%^%$%]])', '%%%1'); -- escape lua patterns in section...
Click to read more »Module:Convert/wikidata
Kamis, 2021-05-06 12:08:27but in case definitions ever use wikitext -- like '[[kilogram|kg]]', escape the text so it works in a table cell. local result = {} for i, v in...
Click to read more »Module:Sandbox/Luis150902/cleanup/doc
Sabtu, 2017-01-07 05:43:15string is the string to be escaped. This eases the editing of wiki markup containing bidirectional text. Inserting = (escaped form of =) is displayed...
Click to read more »Module:Template parameter value
Kamis, 2025-10-23 22:11:46from [[Module:Transcluder]] with extra features removed local function escapeString(str) return string.gsub(str, '[%^%$%(%)%.%[%]%*%+%-%?%%]', '%%%0')...
Click to read more »Module:Convert/wikidata/sandbox
Senin, 2020-12-14 13:00:27but in case definitions ever use wikitext -- like '[[kilogram|kg]]', escape the text so it works in a table cell. local result = {} for i, v in...
Click to read more »Module:Arbitration motion implementation notes/Motion/Automatic
Rabu, 2026-02-18 03:58:26args["pattern"] or "%c:?#[^:#%*].-UTC" local ret = args["ret"] or "" local escape = mw.ustring.gsub( section, "([%(%)%.%%%+%-%*%?%[%^%$%]])", "%%%1" ) ...
Click to read more »Module:Footnotes
Minggu, 2025-03-02 10:29:01link get the uri escaped_uri = uri:gsub ("([%(%)%.%%%+%-%*%?%[%^%$%]])", "%%%1" ); -- save a copy with lua pattern characters escaped uri = uri:gsub...
Click to read more »Module:Wikipedia ads/list/doc
Minggu, 2023-07-16 09:00:44quote marks (""). If any of your input contains double quotes, you can escape them by using a backslash, like this: author = "[[User:Austin \"Danger\"...
Click to read more »Module:Wikitext Parsing/sandbox
Kamis, 2025-10-23 05:59:23will consume all text instead of not processing. There's no sense of escaping < or > E.g. <div class="error\>"> will end at \> despite it being inside...
Click to read more »Module:Italic title2
Rabu, 2025-08-13 08:01:58format('<i>%s</i>', s) end -- Escape characters in a string that are magic in Lua patterns. -- Param: pattern - the pattern to escape -- Returns string....
Click to read more »Module:Excerpt/sandbox
Jumat, 2026-03-06 19:54:40if full then excerpt = excerpt:gsub( Excerpt.escapeString( reference ), Excerpt.escapeString( full ), 1 ) end table.insert( fixed,...
Click to read more »Module:Pipe escape
Minggu, 2017-08-27 22:57:22local p = {} function p.pipe( f ) local out = {} for _, arg in ipairs( f:getParent().args ) do table.insert( out, arg ) end return mw.text.trim(...
Click to read more »Module:Arbitration motion implementation notes/Motion/Automatic/sandbox
Rabu, 2026-02-18 05:32:35args["pattern"] or "%c:?#[^:#%*].-UTC" local ret = args["ret"] or "" local escape = mw.ustring.gsub( section, "([%(%)%.%%%+%-%*%?%[%^%$%]])", "%%%1" ) ...
Click to read more »Module:Sandbox/Tamzin/Rfd2
Rabu, 2022-01-19 10:03:15-- Have to transclude to work around {{RfD}} tag local escaped = mw.ustring.gsub(redirect, '"', '"') return '# <span id="' .. escaped .. '"' end...
Click to read more »Module:Sandbox/trappist the monk/math
Senin, 2022-10-24 04:04:26markers local escaped = '__35c4p3d__'; -- the special secret EScApEd keyword local str = math_title:gsub ('\\%$', escaped); -- replace...
Click to read more »Module:String/doc
Minggu, 2026-05-24 13:57:35pattern_string The pattern string to escape Examples: "{{#invoke:String|escapePattern|A.D.}}" → "A%.D%." "{{#invoke:String|escapePattern|10%}}" → "10%%" This function...
Click to read more »Module:DemoTemplate
Jumat, 2022-10-21 13:42:10our output, even in the cases of pipes or other things we should have escaped but didn't return string.format('<code>%s</code> → %s', mw.text...
Click to read more »Module:Wikitext Parsing
Selasa, 2025-05-06 00:47:12dontEscape) --Setup if not dontEscape then InputText = PrepareText(InputText) end local function finalise(text) if not dontEscape then ...
Click to read more »Module:Ustring/doc
Sabtu, 2026-01-31 05:42:56numerical (i.e. unnamed or "|1=", "|2=") to remain a string, you can simply escape it by inserting \ at the beginning of the string. Note that MediaWiki will...
Click to read more »Module:Template invocation
Jumat, 2024-09-06 03:21:20formatting options. (string, optional) -- Set to "nowiki" to escape, curly braces, pipes and -- equals signs with their HTML...
Click to read more »Module:RoundN/doc
Jumat, 2024-06-07 05:30:34be maintained). If curly brackets are desired in the text, make sure to escape them with \. bridge - Current node is omitted and replaced with a vertical...
Click to read more »Module:String2/sandbox
Rabu, 2025-02-19 19:23:52getParameters -- Escape Pattern helper function so that all characters are treated as plain text, as per Module:String function p._escapePattern( pattern_str...
Click to read more »Module:Bad title suggestion
Jumat, 2025-06-27 09:15:54-- The invalid character, e.g. ">" or "}" local chr = args[1] -- The escaped bad title, e.g. "Foobar>" or "Foobar|text" local title = args[2]...
Click to read more »Module:Template parameter value/sandbox
Kamis, 2025-10-23 22:00:38from [[Module:Transcluder]] with extra features removed local function escapeString(str) return string.gsub(str, '[%^%$%(%)%.%[%]%*%+%-%?%%]', '%%%0')...
Click to read more »Module:LibDeflate
Kamis, 2025-10-30 06:08:46decode_translate escape_char_index = escape_char_index + 1 escape_char = string_sub(escape_chars, escape_char_index, ...
Click to read more »Module:DecodeEncode/sandbox
Selasa, 2023-03-21 22:03:22function p._encode( s, charset ) -- example: charset = '_&©−°\\\"\'\=' -- do escape with backslash not %; local ret if charset ~= (nil or '') then ret...
Click to read more »Module:Road data/strings/USA/MD
Jumat, 2022-08-19 02:32:13["13"] = "#13: Star-Spangled Banner", ["14"] = "#14: Booth's Escape", ["15"] = "#15: Roots and Tides", ["16"] = "#16: Religious...
Click to read more »Module:Sandbox/Mathglot/Section sizes
Senin, 2022-10-24 04:11:31(section_name_list) do local escaped_section_name = string.gsub (section_name[1], '([%(%)%.%%%+%-%*%?%[%^%$%]])', '%%%1'); -- escape lua patterns in section...
Click to read more »Module:Footnotes/sandbox
Jumat, 2025-05-16 04:41:13link get the uri escaped_uri = uri:gsub ("([%(%)%.%%%+%-%*%?%[%^%$%]])", "%%%1" ); -- save a copy with lua pattern characters escaped uri = uri:gsub...
Click to read more »Module:Sandbox/Matthiaspaul/Citation/CS1/COinS
Selasa, 2020-06-16 10:16:17-- no more urls pattern = escape_lua_magic_chars (pattern); -- pattern is not a literal string; escape lua's magic pattern characters ...
Click to read more »Module:Ko-translit/sandbox
Sabtu, 2026-05-02 06:16:36cleaning, parsing people names, validation) text = m_clean.escaped_to_html(text) -- replacing escaped special chars with placeholders m_clean.validate_input(text)...
Click to read more »Module:Suppress categories/doc
Jumat, 2023-11-10 08:59:45category]]", it will return only "foo". The module properly handles categories escaped with the colon trick, categories whose names include invalid characters...
Click to read more »Module:Build bracket/Helpers
Selasa, 2025-08-19 01:00:331) % 26) + 1 return string.char(string.byte("a") + num - 1) end -- Escape single characters for use inside a Lua pattern character class. local function...
Click to read more »Module:Gadgets
Kamis, 2025-10-02 05:38:19'general' end end return 'styles' end p.get_usage = function(name) -- escape name for use in pattern name = name:gsub("[%-%.%+%[%]%(%)%$%^%%%?%*]",...
Click to read more »Module:Excerpt/portals/sandbox
Jumat, 2026-02-06 20:41:50local parser = require("Module:WikitextParser") local escapeString = require("Module:String")._escapePattern local yesno = require('Module:Yesno') local...
Click to read more »Module:Bad title suggestion/sandbox
Jumat, 2025-06-27 09:14:27-- The invalid character, e.g. ">" or "}" local chr = args[1] -- The escaped bad title, e.g. "Foobar>" or "Foobar|text" local title = args[2]...
Click to read more »Module:IPAc-en
Senin, 2024-07-08 15:19:47local function makeTooltip(label, tooltip) -- mw.html doesn't properly escape '|' return string.format( '<span title="%s">%s</span>', mw.text.encode(tooltip...
Click to read more »Module:Build bracket/Helpers/sandbox
Selasa, 2025-08-26 21:12:241) % 26) + 1 return string.char(string.byte("a") + num - 1) end -- Escape single characters for use inside a Lua pattern character class. local function...
Click to read more »Module:Arbitration case implementation notes/Proposal/Automatic/sandbox
Selasa, 2025-10-07 07:53:44escape = mw.ustring.gsub( section, "([%(%)%.%%%+%-%*%?%[%^%$%]])", "%%%1" ) local sectionText, matches = mw.ustring.gsub(text, ".-%=%=%= *"..escape....
Click to read more »Module:Template invocation/sandbox
Sabtu, 2024-07-13 19:42:56formatting options. (string, optional) -- Set to "nowiki" to escape, curly braces, pipes and -- equals signs with their HTML...
Click to read more »Module:WPSHIPS utilities
Selasa, 2026-04-07 00:38:23-- if unable to format the name local escaped_name = pframe.args[2]:gsub("([%(%)%.%-])", "%%%1"); -- escape some of the Lua magic characters if pframe...
Click to read more »Module:Gadgets/sandbox
Senin, 2025-11-03 11:14:57'general' end end return 'styles' end p.get_usage = function(name) -- escape name for use in pattern name = name:gsub("[%-%.%+%[%]%(%)%$%^%%%?%*]",...
Click to read more »Module:Archive
Sabtu, 2025-05-03 22:40:12return string.format('[[%s]]', page) end end local function escapePattern(s) -- Escape punctuation in a string so it can be used in a Lua pattern. ...
Click to read more »Module:Wikitext Parsing/doc
Senin, 2025-10-13 17:48:09significant issue but still something worth noting. ParseTemplates(InputText, dontEscape) will attempt to parse all {{Templates}} on a page, handling multiple factors...
Click to read more »Module:Arbitration case implementation notes/Proposal/Automatic
Minggu, 2026-01-04 11:02:55escape = mw.ustring.gsub( section, "([%(%)%.%%%+%-%*%?%[%^%$%]])", "%%%1" ) local sectionText, matches = mw.ustring.gsub(text, ".-%=%=%= *"..escape....
Click to read more »Module:Sandbox/Desb42/Transcluder
Minggu, 2021-11-28 21:23:23end return match end -- Helper function to escape a string for use in regexes local function escapeString(str) return string.gsub(str, '[%^%$%(%)%...
Click to read more »Module:Sports table/Custom
Sabtu, 2023-03-25 06:15:36loss_points*losses + rw_points*rw + s_pts local pct = '' if matches == 0 then -- Escape for zero matches pct = '—' else pct = mm._precision_format(wins...
Click to read more »Module:IPAc-en/sandbox
Sabtu, 2025-09-06 21:24:47local function makeTooltip(label, tooltip) -- mw.html doesn't properly escape '|' return string.format( '<span title="%s">%s</span>', mw.text.encode(tooltip...
Click to read more »Module:Sandbox/MJL/CS1/COinS
Sabtu, 2021-09-04 01:03:23-- no more URLs pattern = escape_lua_magic_chars (pattern); -- pattern is not a literal string; escape Lua's magic pattern characters ...
Click to read more »Module:WLink
Jumat, 2020-10-30 22:03:05}; --[=[ ansiPercent() formatURL() getArticleBase() getBaseTitle() getEscapedTitle() getExtension() getFile() getFragment() getLanguage() getNamespace()...
Click to read more »Module:Citation/CS1
Sabtu, 2026-02-28 22:14:46F O R _ U R L >------------------------------------------------------ Escape sequences for content that will be used for URL descriptions ]] local...
Click to read more »Module:Sandbox/Nardog/4
Minggu, 2020-07-05 18:20:36local remaining, escaped = {}, {} repeat table.insert(remaining, sub(s, 1, i - 1)) -- What precedes the match table.insert(escaped, sub(s, i, j))...
Click to read more »Module:Excerpt/staging
Minggu, 2026-01-18 23:47:46if full then excerpt = excerpt:gsub( Excerpt.escapeString( reference ), Excerpt.escapeString( full ), 1 ) end table.insert( fixed,...
Click to read more »Module:Sandbox/Xinbenlv/WikiTextFromWikibase
Rabu, 2019-03-27 05:46:11return mw.wikibase.renderSnak( snak ) -- Returns the given Snak value formatted as wikitext escaped plain text. end return p...
Click to read more »Module:Strip to numbers/doc
Selasa, 2024-05-21 06:33:16contain the = character unless it is escaped as {{=}} or &equal;. There may be other characters than = that must be escaped. At present, the module only does...
Click to read more »Module:Format link/doc
Kamis, 2025-09-18 14:37:16the section symbol ("§") and appropriate whitespace, it automatically escapes category and file names with the colon trick, and includes functionality...
Click to read more »Module:Block diagram
Kamis, 2013-05-09 13:51:33names to allow internal use local vs=mw.ustring.gsub(v,"%-","%-") -- escape those hyphens for pattern search textinput=mw.ustring.gsub(textinput...
Click to read more »Module:Parameter validation/sandbox
Senin, 2026-04-27 12:19:28ustring.gsub( s, 'paramname', concat_and_escape( k_ar ) ) s = mw.ustring.gsub( s, 'paramandvalue', concat_and_escape( kv_ar, ' AND ' ) ) if mw...
Click to read more »Module:Sandbox/Luis150902/cleanup
Sabtu, 2017-01-07 05:40:48-- This module escapes Unicode characters >= U+0100. local p = {} function p._main(s) local r = "" local i = 1 local l = mw.ustring.len(s) local...
Click to read more »Module:Sandbox/JPxG/Automatic archive navigator editsection
Kamis, 2024-10-10 00:19:34return string.format('[[%s]]', page) end end local function escapePattern(s) -- Escape punctuation in a string so it can be used in a Lua pattern. ...
Click to read more »Module:WPSHIPS utilities/sandbox
Senin, 2025-12-29 14:36:53-- if unable to format the name local escaped_name = pframe.args[2]:gsub("([%(%)%.%-])", "%%%1"); -- escape some of the Lua magic characters if pframe...
Click to read more »Module:WikitextParser
Rabu, 2026-02-11 21:45:12local parser = {} -- Private helper method to escape a string for use in regexes local function escapeString( str ) return string.gsub( str, '[%^%$%(%)%...
Click to read more »Module:InfoFlora
Minggu, 2018-09-30 09:53:47" ") -- wieder zusammensetzen -- Workaround: Brackets müssen escaped werden sciname_formatted = mw.ustring.gsub(sciname_formatted, "%[", "[")...
Click to read more »Module:Infobox television/sandbox
Selasa, 2026-05-26 01:46:48://[%w%p]-/?%s-[^%]]-%]") do -- Escape special characters in the link for pattern matching local escaped_link = link:gsub("([%^%$%(%)%%%.%[%]%*%+%-%...
Click to read more »Module:Template test case
Kamis, 2025-08-07 00:01:43and ". This means that HTML entities in -- the original code must be escaped as e.g. &lt;, which is unfortunate, -- but it is the best we can do...
Click to read more »Module:Convert character width/data
Rabu, 2021-10-27 00:25:21['#'] = '#', ['$'] = '$', ['\%'] = '%', -- This needs to be escaped, otherwise it generates invalid pattern matches. ['&'] = '&', ["'"]...
Click to read more »Module:Section sizes
Sabtu, 2026-04-18 10:58:52already accounted for local escaped_section_name = section_t.name:gsub ('[%(%)%.%%%+%-%*%?%[%^%$%]]', '%%%0'); -- escape lua patterns in section name...
Click to read more »Module:Sandbox/trappist the monk/test
Minggu, 2018-01-14 22:47:37while true do -- spoof a loop so that we can use break to escape when a match is made code, script = source:match (cs_patterns[1]); ...
Click to read more »Module:Str find word/sandbox
Jumat, 2023-04-21 15:19:06trim( str ) end -- %-Escape any word (character string) before feeding it into a string pattern function -- will be %-escaped: "([%(%)%.%%%+%-%*%?%[%^%$%]])"...
Click to read more »Module:Sandbox/Philipnelson99
Kamis, 2024-03-21 05:36:56= {} delim = delim:gsub('([%(%)%.%%%+%-%*%?%[%^%$%]])', '%%%1') -- escape any special characters for match in (str..delim):gmatch("(.-)"..delim)...
Click to read more »Module:Citation/CS1/sandbox
Minggu, 2026-04-26 21:34:02F O R _ U R L >------------------------------------------------------ Escape sequences for content that will be used for URL descriptions ]] local...
Click to read more »Module:Citation/CS1/Suggestions
Sabtu, 2023-01-14 21:43:32= 'correct', Lua patterns are not REGEX though they are similar. The escape character is '%', not '\'. For more information about Lua patterns, see:...
Click to read more »Module:RoundN
Kamis, 2024-03-07 20:54:05create'table', { bs = require'Module:Escape',--backslash comma = {['(%([^,]*),([^%)]*%))'] = '%1|@!#|%2'},--escape commas in () } local nodeFunc = { scanPattern...
Click to read more »Module:WikitextParser/sandbox
Jumat, 2026-05-15 21:48:42local parser = {} -- Private helper method to escape a string for use in regexes local function escapeString( str ) return string.gsub( str, '[%^%$%(%)%...
Click to read more »Module:Wd/doc
Senin, 2025-10-20 21:45:41beginning or end of a value, use an underscore _. To get a literal underscore, escape it by placing a backslash \ directly in front of it (i.e. \_); the same...
Click to read more »Module:DYK checklist
Rabu, 2025-03-05 06:12:13truncates long strings so that they -- are easier to read. local function escapeUserString(s) if #s > 28 then s = s:sub(1, 12) .. '...' .. s:sub(-12,...
Click to read more »Module:Archive/sandbox
Minggu, 2025-04-13 03:12:00return string.format('[[%s]]', page) end end local function escapePattern(s) -- Escape punctuation in a string so it can be used in a Lua pattern. ...
Click to read more »Module:Sports table/Custom/sandbox
Selasa, 2024-10-15 12:15:51loss_points*losses + rw_points*rw + s_pts local pct = '' if matches == 0 then -- Escape for zero matches pct = '—' else pct = mm._precision_format(wins...
Click to read more »Module:Strip to numbers/testcases
Kamis, 2026-02-05 22:32:56(string expected, got nil). Yeah, it dies on contact with =. Can it be escaped? (see below: use |1=) Input: {{=}}70% Result: 70 Input: style{{=}}"font-size:...
Click to read more »Module:Ko-translit
Rabu, 2025-11-26 04:57:46return text end text = gsub_iterate(text, m_data.escaped_to_html_enc) -- replacing escaped special chars with placeholders -- various validations...
Click to read more »Module:Category series navigation
Selasa, 2025-12-09 01:35:27local findvar_escaped = string.gsub( findvar.v, '%-', '%%%-') local firstpart, lastpart = string.match(pagename, '^(.-)'..findvar_escaped..'(.*)$') if...
Click to read more »Module:Sandbox/DePiep/uchar
Selasa, 2023-08-01 22:45:17input?: err msg, prio, conflictcheck -- 2023-02-04: removed "\|" "invalid escape sequence" ??? tNewArgs['rprtOrigIDs'] = ' |ID in: #t4=' .. #tOrigIn .....
Click to read more »Module:Sandbox/Thayts/Wd/doc
Kamis, 2026-02-05 22:33:10beginning or end of a value, use an underscore _. To get a literal underscore, escape it by placing a backslash \ directly in front of it (i.e. \_); the same...
Click to read more »Module:URLutil
Sabtu, 2022-12-10 00:12:27isResourceURL() * isSuspiciousURL() * isUnescapedURL() * isWebURL() * wikiEscapeURL() * failsafe() Only [[dotted decimal]] notation for IPv4 expected. Does...
Click to read more »Module:Format link
Selasa, 2022-10-04 20:37:11-- Makes a wikilink from the given link and display values. Links are escaped -- with colons if necessary, and links to sections are detected and displayed...
Click to read more »Module:ExcerptHeaderLevel
Senin, 2026-05-04 16:34:59local pattern = escapeString(str) if #pattern > 9999 then pattern = escapeString(mw.ustring.sub(str, 1, 999)) .. '.-' .. escapeString(mw.ustring.sub(str...
Click to read more »Module:Infobox television
Selasa, 2026-04-28 18:25:24://[%w%p]-/?%s-[^%]]-%]") do -- Escape special characters in the link for pattern matching local escaped_link = link:gsub("([%^%$%(%)%%%.%[%]%*%+%-%...
Click to read more »Module:Sandbox/ProcrastinatingReader/three
Minggu, 2020-12-06 23:44:28ustring.gsub( s, 'paramname', concat_and_escape( k_ar ) ) s = mw.ustring.gsub( s, 'paramandvalue', concat_and_escape( kv_ar, ' AND ' ) ) if mw...
Click to read more »Module:Citation/CS1/Suggestions/sandbox
Rabu, 2025-12-17 03:52:24= 'correct', Lua patterns are not REGEX though they are similar. The escape character is '%', not '\'. For more information about Lua patterns, see:...
Click to read more »Module:Sandbox/PHansen/URLutil
Selasa, 2015-01-13 23:49:19isResourceURL() * isSuspiciousURL() * isUnescapedURL() * isWebURL() * wikiEscapeURL() Only [[dotted decimal]] notation for IPv4 supported. Does not support...
Click to read more »Module:Interwiki extra
Rabu, 2026-02-11 20:49:01pathQuery2 = makePathQuery(obj2) -- Turn pathQuery1 into a string pattern by escaping all punctuation, then -- replacing the "$1" parameter (which will have...
Click to read more »Module:Section sizes/sandbox
Selasa, 2025-09-23 23:18:11already accounted for local escaped_section_name = section_t.name:gsub ('[%(%)%.%%%+%-%*%?%[%^%$%]]', '%%%0'); -- escape lua patterns in section name...
Click to read more »Module:Sandbox/BrandonXLF/Module:Map params
Jumat, 2024-09-06 14:04:04local p = {} local yesno = require('Module:Yesno') -- Escape a string to add to a Lua pattern local function escPattern(s) return s:gsub('([%(%)%%%.%[%]%*%+%-%...
Click to read more »Module:Template test case/sandbox
Rabu, 2025-08-06 23:54:27and ". This means that HTML entities in -- the original code must be escaped as e.g. &lt;, which is unfortunate, -- but it is the best we can do...
Click to read more »Module:Ko-translit/clean
Sabtu, 2026-05-02 06:30:17killMarkers(text) return text end -- Converting escaped special chars to HTML tags to preserve them function p.escaped_to_html(text) local replacements = { ...
Click to read more »Module:Format link/sandbox
Selasa, 2022-10-04 20:36:21-- Makes a wikilink from the given link and display values. Links are escaped -- with colons if necessary, and links to sections are detected and displayed...
Click to read more »Module:Sandbox/Tom.Reding/sandbox
Jumat, 2026-01-23 19:42:49%+%-%*%?%[%]%^%$])' local esc = frame.args[1]:gsub(special_chars, '%%%1') -- escape each special character return esc end function p.template_outside_shell(...
Click to read more »Module:Convert
Kamis, 2026-01-15 09:19:56fields from splitting text. -- The delimiter is used in a regex without escaping (for example, '.' would fail). -- Each field has any leading/trailing...
Click to read more »Module:DYK checklist/sandbox
Minggu, 2025-10-05 13:07:15truncates long strings so that they -- are easier to read. local function escapeUserString(s) if #s > 28 then s = s:sub(1, 12) .. '...' .. s:sub(-12,...
Click to read more »Module:Wd
Rabu, 2025-07-23 02:53:47"d:Special:EntityPage/", id end end label = mw.text.nowiki(label) -- escape raw label text so it cannot be wikitext markup if title then label...
Click to read more »Module:Transclusion count/data/E
Minggu, 2026-05-31 12:12:52["Module:Episode_table/styles.css"] = 28000, ["Module:Error"] = 52000, ["Module:Escape"] = 13000, ["Module:Excerpt"] = 14000, ["Module:Excerpt/config"] = 14000...
Click to read more »Module:BibTeX
Jumat, 2026-06-05 17:08:55doi = doi:gsub("^doi:%s*", "") return doi end local function wikitext_escape(s) if not s or s == "" then return s end -- keep it simple: avoid breaking...
Click to read more »Module:Sandbox/Trappist the monk/Emoji data make
Senin, 2024-03-11 06:37:27-- get emoji name name = name:gsub ("'", "\\'"); -- escape ' (U+0027 typewriter apostrophe) name = mw.ustring.gsub (name, '[“”‘’]'...
Click to read more »Module:Taxonbar
Minggu, 2025-12-14 22:45:10uri.encode( val, 'PATH' ) valurl = string.gsub (valurl, '%%2F', '/') --escape '/' (e.g. issue with P5354); see wikidata T128078 and https://gerrit.wikimedia...
Click to read more »Module:Sports table/WDL
Kamis, 2025-04-24 06:03:07local ppg = '' if tonumber(matches) == nil or matches == 0 then -- Escape for zero matches win_perc = '—' ppg = '—' else --Some...
Click to read more »Module:GANList3
Sabtu, 2022-10-22 05:03:51truncates long strings so that they -- are easier to read. local function escapeUserString(s) if #s > 28 then s = s:sub(1, 12) .. '...' .. s:sub(-12,...
Click to read more »Module:Chem2
Kamis, 2024-12-26 11:47:22f:match('^%[[^[]', i)) then i = i + 1; return T_OPEN, '[' end -- escape [[[X or [X (relevant to auto-linking) if not x and f:sub(i,...
Click to read more »Module:Footnotes/anchor id list
Selasa, 2025-01-14 09:04:50Returns a string where all of lua's magic characters have been escaped. This is important because functions like string.gsub() treat their pattern...
Click to read more »Module:Convert/tester
Selasa, 2026-03-03 13:50:15a zero byte text = text:gsub('{', '{'):gsub('|', '|') -- escape '{' and '|' text = text:gsub('%z', '|') --...
Click to read more »Module:UserLinks/config
Rabu, 2024-08-28 06:59:33be short, but -- -- descriptive. Spaces are automatically escaped with , so there is no -- -- need to add any &nsbp; values here....
Click to read more »Module:Nihongo
Kamis, 2025-06-19 07:06:39romanized = romanized:gsub ('([%(%)%.%%%+%-%*%?%[%^%$%]])', '%%%1'); -- escape lua pattern characters local romanized_has_leading_paren = ret_string:match...
Click to read more »Module:ApplyLinkAnnotations/testcases
Selasa, 2022-03-08 01:42:35item"] = { "*[[hello|hey]]", "* {{Annotated link |hello|hey}}" } t_match["escaped spaces"] = { "*[[Afternoon_delight]]", "* {{Annotated link |Afternoon_delight}}"...
Click to read more »Module:Footnotes/anchor id list/sandbox
Sabtu, 2025-05-24 17:15:09Returns a string where all of lua's magic characters have been escaped. This is important because functions like string.gsub() treat their pattern...
Click to read more »Module:UserLinks/shared
Jumat, 2016-12-30 22:21:53local mCategoryHandler -- Define namespaces for which links need to be escaped with the colon trick. -- See [[w:en:Help:Colon trick]]. local colonNamespaces...
Click to read more »Module:Vital article
Selasa, 2026-03-24 23:50:53. (link and (icon .. ' [[' .. link .. '|' .. level .. ']]') or '[[File:Escape suspect.svg|11px|Non-vital article]]') .. class end p.isVital = function(frame)...
Click to read more »Module:Vital article/sandbox
Selasa, 2026-03-24 23:49:40. (link and (icon .. ' [[' .. link .. '|' .. level .. ']]') or '[[File:Escape suspect.svg|11px|Non-vital article]]') .. class end p.isVital = function(frame)...
Click to read more »Module:Category series navigation/sandbox
Kamis, 2025-12-04 03:48:08local findvar_escaped = string.gsub( findvar.v, '%-', '%%%-') local firstpart, lastpart = string.match(pagename, '^(.-)'..findvar_escaped..'(.*)$') if...
Click to read more »Module:Jf-JSON
Kamis, 2016-12-08 10:48:33PARAGRAPH -- separators, if found in a string, are encoded with a JSON escape instead of being dumped as is. -- The JSON is valid either way, but encoding...
Click to read more »Module:TableTools/testcases
Kamis, 2026-01-29 20:34:46efNums = tt.affixNums(affixArray, 'e-f') -- "-" is magic, so we need to escape it. self:assertEquals(aNumsConcatenated, suite.concatIpairs(aNums))...
Click to read more »Module:Sports table/College
Jumat, 2024-10-04 12:14:20or 'yes') if tonumber(matches) == nil or matches == 0 then -- Escape for zero matches win_perc = '—' else --Some sports use tie as...
Click to read more »Module:WikiProject banner
Jumat, 2026-05-29 07:42:24-- found a banner shell banner_name_escaped = banner_name_escaped:gsub(special_chars, '%%%1') -- escape each special character capture =...
Click to read more »Module:Sandbox/Ita140188/Section sizes 2
Selasa, 2025-09-02 08:45:01already accounted for local escaped_section_name = section_t.name:gsub ('[%(%)%.%%%+%-%*%?%[%^%$%]]', '%%%0'); -- escape lua patterns in section name...
Click to read more »Module:Chem2/sandbox
Selasa, 2023-02-28 06:30:11f:match('^%[[^[]', i)) then i = i + 1; return T_OPEN, '[' end -- escape [[[X or [X (relevant to auto-linking) if not x and f:sub(i,...
Click to read more »Module:Convert/sandbox
Senin, 2026-03-02 10:48:21fields from splitting text. -- The delimiter is used in a regex without escaping (for example, '.' would fail). -- Each field has any leading/trailing...
Click to read more »Module:Routemap
Kamis, 2026-03-26 07:59:00res = string.gsub(res, '{{[Bb][Ss]%-?map', '{{Routemap') -- "%-" is an escape for hyphen which is used as "between" in pattern. res = string.gsub(res...
Click to read more »Module:Ko-pron
Jumat, 2025-04-18 05:54:53m_str_utils.len local match = m_str_utils.match local pattern_escape = m_str_utils.pattern_escape local sub = m_str_utils.sub local toNFC = mw.ustring.toNFC...
Click to read more »Module:Nihongo/sandbox
Rabu, 2025-06-18 17:52:37romanized = romanized:gsub ('([%(%)%.%%%+%-%*%?%[%^%$%]])', '%%%1'); -- escape lua pattern characters local romanized_has_leading_paren = ret_string:match...
Click to read more »Module:RoundN/sandbox
Jumat, 2025-05-30 19:58:57create'table', { bs = require'Module:Escape',--backslash comma = {['(%([^,]*),([^%)]*%))'] = '%1|@!#|%2'},--escape commas in () } local nodeFunc = { scanPattern...
Click to read more »Module:Val
Minggu, 2025-06-01 12:39:35built-in units. -- A unit code should not contain wikimarkup so don't bother escaping. local data = mw.loadData(data_module) local definitions = data.builtin_units...
Click to read more »Module:Kangxi radical
Kamis, 2024-11-28 17:07:31getArgs return p._Kxr(getArgs(frame)) end local function utfEscape(hex) return "&#" .. hex .. ";" end function p.toRadicalNumber(ch) ...
Click to read more »Module:Sandbox/Queen of Hearts
Minggu, 2025-03-02 10:14:44link get the uri escaped_uri = uri:gsub ("([%(%)%.%%%+%-%*%?%[%^%$%]])", "%%%1" ); -- save a copy with lua pattern characters escaped uri = uri:gsub...
Click to read more »Module:UserLinks/shared/sandbox
Rabu, 2023-01-11 01:52:05local mCategoryHandler -- Define namespaces for which links need to be escaped with the colon trick. -- See [[w:en:Help:Colon trick]]. local colonNamespaces...
Click to read more »Module:Find sources/doc
Kamis, 2024-10-17 00:11:21specifies a custom tooltip for the link. HTML reserved characters are escaped by the module. If the field is absent, no tooltip is displayed. For the...
Click to read more »Module:Jf-JSON/sandbox
Minggu, 2018-02-18 02:54:37PARAGRAPH -- separators, if found in a string, are encoded with a JSON escape instead of being dumped as is. -- The JSON is valid either way, but encoding...
Click to read more »Module:Infobox television season name/sandbox
Kamis, 2024-08-15 16:28:54disambiguation = getDisambiguation(title) if disambiguation then -- Escape special characters in the pattern. disambiguation = disambiguation:gsub("([%^%$%(%)%%...
Click to read more »Module:Transclusion count/data/L
Minggu, 2026-05-31 12:14:0218000, ["Lowercasetitle"] = 2500, ["Lt"] = 2500, ["Lua"] = 12000, ["Lua_escape"] = 5700, ["Module:LCCN"] = 2400, ["Module:Labelled_list_hatnote"] = 628000...
Click to read more »Module:UserLinks/config/sandbox
Jumat, 2025-11-28 19:06:23be short, but -- -- descriptive. Spaces are automatically escaped with , so there is no -- -- need to add any &nsbp; values here....
Click to read more »Module:User:Cscott/mlua
Sabtu, 2024-03-30 00:35:04:} QUOTE_CONTENT <-- (ESCAPE_SEQ / !(QUOTE_CLOSE / LINEBREAK) .)* QUOTE_CLOSE <-- =qe ESCAPE_SEQ <-- '\'->'' @ESCAPE ESCAPE <-- [\'"»] / ...
Click to read more »Module:Wd/sandbox
Jumat, 2025-08-08 00:45:17"d:Special:EntityPage/", id end end label = mw.text.nowiki(label) -- escape raw label text so it cannot be wikitext markup if title then label...
Click to read more »Module:Taxonbar/sandbox
Rabu, 2025-12-17 19:42:44uri.encode( val, 'PATH' ) valurl = string.gsub (valurl, '%%2F', '/') --escape '/' (e.g. issue with P5354); see wikidata T128078 and https://gerrit.wikimedia...
Click to read more »Module:Ko-translit/data
Selasa, 2025-12-02 05:45:31{"㉽", "(주의)"}, {"㉾", "(우)"} } -- converting escaped special chars to HTML tags to preserve them p.escaped_to_html_enc = { {"\\%$", "$"}, {"\\%%"...
Click to read more »Module:Mapframe
Senin, 2026-06-01 22:40:49if val ~= '' then -- control characters inside json need to be escaped, but stripping them is simpler -- See also T214984 -- However,...
Click to read more »Module:Sports table/Badminton team
Kamis, 2022-12-15 01:00:24loss_points*losses + s_pts local win_perc = '' if matches == 0 then -- Escape for zero matches win_perc = '—' else --Some sports use draw...
Click to read more »Module:Routemap/sandbox
Kamis, 2026-03-26 07:43:54res = string.gsub(res, '{{[Bb][Ss]%-?map', '{{Routemap') -- "%-" is an escape for hyphen which is used as "between" in pattern. res = string.gsub(res...
Click to read more »Module:Sandbox/Aidan9382/CodeAnalysis
Jumat, 2024-08-23 14:58:16'repeat', 'return', 'then', 'true', 'until', 'while', }; local BackslashEscaping = { a="\a", b="\b", f="\f", n="\n", r="\r", t="\t", v="\v", ["\\"]="\\"...
Click to read more »Module:Sandbox/Awesome Aasim/CS1 LDoc Test/doc
Selasa, 2025-05-20 21:39:21(function • local) Escape sequences for content that will be used for URL descriptions Parameter: str string to escape (string) Returns: escaped string external_link(...
Click to read more »Module:Sandbox/Ita140188/Section sizes
Kamis, 2025-08-28 20:58:32already accounted for local escaped_section_name = section_t.name:gsub ('[%(%)%.%%%+%-%*%?%[%^%$%]]', '%%%0'); -- escape lua patterns in section name...
Click to read more »Module:DYK queue formatting check
Sabtu, 2025-12-13 13:02:20"codename" -- Use templates or HTML alternatives from -- [[Template:Escape template list]] if there's actually code in a hook. return "Potentially...
Click to read more »Module:WikiProject banner/sandbox
Jumat, 2026-05-29 07:33:27-- found a banner shell banner_name_escaped = banner_name_escaped:gsub(special_chars, '%%%1') -- escape each special character capture =...
Click to read more »Module:Sandbox/Psiĥedelisto/Hatnote
Sabtu, 2020-06-13 16:45:37-- Makes a wikilink from the given link and display values. Links are escaped -- with colons if necessary, and links to sections are detected and displayed...
Click to read more »Module:Sports table/Darts
Selasa, 2021-04-20 07:39:56_precision_format((2*wins + draws) / (2*matches), 3) if matches == 0 then -- Escape for zero matches win_perc = '—' elseif losses > 0 then -- Drop...
Click to read more »Module:Sandbox/Trappist the monk/Emoji short name data make
Rabu, 2024-03-13 23:01:24whitespace with underscore name = name:gsub ("'", "\\'"); -- escape ' (U+0027 typewriter apostrophe) TODO: necessary? name = mw.ustring...
Click to read more »Module:Documentation/testcases
Jumat, 2026-05-29 01:07:17te:Example/sandbox') local notice = doc.sandboxNotice({}, env) -- Escape metacharacters (mainly '-') clear = clear:gsub( '%p', '%%%0' ) ...
Click to read more »Module:Sports table/Badminton individual
Jumat, 2021-09-03 13:02:01sports use draw as well local win_perc = '' if matches == 0 then -- Escape for zero matches win_perc = '—' else win_perc = mm._precision_format((2*wins)...
Click to read more »Module:Infobox gene
Rabu, 2025-02-05 02:58:46:wikitext(symbol_url) :done() --end span :wikitext(mw.text.nowiki(aliases)) -- escape raw text so it cannot be wikitext markup :done() --end td :done()...
Click to read more »Module:Sports table/WDL OT
Sabtu, 2026-05-09 23:45:21'' if tonumber(matches) == nil or (matches*win_points) == 0 then -- Escape for zero matches point_perc = '—' ppg = '—' else if...
Click to read more »Module:Sandbox/Jackmcbarn/mw.html.lua
Rabu, 2014-12-17 08:32:46local function isValidTag( s ) return s:match( '^[a-zA-Z0-9]+$' ) end -- Escape a value, for use in HTML -- -- @param s local function htmlEncode( s ) ...
Click to read more »Module:Convert/makeunits
Selasa, 2024-10-22 14:42:28fields from splitting text. -- The delimiter is used in a regex without escaping (for example, '.' would fail). -- Each field has any leading/trailing...
Click to read more »Module:Internet Archive
Jumat, 2026-05-01 13:57:12needing to be escaped: -- http://lucene.apache.org/core/4_10_0/queryparser/org/apache/lucene/queryparser/classic/package-summary.html#Escaping_Special_Characters...
Click to read more »Module:Sports table/WDLHA
Selasa, 2022-11-29 01:10:10local win_perc = '' if tonumber(matches) == nil or matches == 0 then -- Escape for zero matches win_perc = '—' else --Some sports use draw...
Click to read more »Module:Val/sandbox
Kamis, 2025-05-29 16:08:52built-in units. -- A unit code should not contain wikimarkup so don't bother escaping. local data = mw.loadData(data_module) local definitions = data.builtin_units...
Click to read more »Module:Sandbox/Nemd57
Rabu, 2014-09-03 06:02:23had escaped, they told the executioner to push back the fire a little so that those present could see her dead, that it be not said she had escaped..."<ref>{{cite...
Click to read more »Module:Korean
Minggu, 2025-11-30 23:17:01contains special syntax but romanization not enabled; remove or escape (<code>\\</code>) special syntax.') end if hanjaref and not hanja then...
Click to read more »Module:WikidataIB/doc
Minggu, 2025-12-21 03:30:35quotes are stripped from the separator. The pipe character (|) must be escaped as {{!}}. For reasons of accessibility (see MOS:PLIST), do not use |sep=<br>...
Click to read more »Module:Korean/sandbox
Jumat, 2025-09-05 01:37:56contains special syntax but romanization not enabled; remove or escape (<code>\\</code>) special syntax.') end if hanjaref and not hanja then...
Click to read more »Module:Article history/config
Jumat, 2024-11-22 11:26:36as -- Lua patterns, so any of the magic characters *+-.^$%[] should be escaped -- with a preceding % symbol. actionParamPrefix = 'action', actionParamSuffixes...
Click to read more »Module:Buffer/doc
Senin, 2025-12-08 00:22:18that function is not used to avoid setting a "lastHTML" reference. Module:Escape, a lightweight metamodule for customized string character escaping...
Click to read more »Module:Sandbox/SUM1/Template test case
Senin, 2020-03-09 06:31:37and ". This means that HTML entities in -- the original code must be escaped as e.g. &lt;, which is unfortunate, -- but it is the best we can do...
Click to read more »Module:Sandbox/Masoud.h1368/Wikidata.Ca
Selasa, 2021-03-23 18:25:35last_element .. the_icon end return thetable end -- Escape Lua captures local function captureEscapes(text) return mw.ustring.gsub(text, "(%%%d)", "%%%1")...
Click to read more »Module:Ref info
Minggu, 2024-09-15 17:17:04*cs1%-dates *= *([lsy][sy]?)') .. ']'; end break; -- loop escape end end return ret_val; end --[[--------------------------< O B J...
Click to read more »Module:Side box/testcases
Selasa, 2026-02-03 20:26:59{tag = 'td', attr = 'colspan', value = '3'} -- Properties and values are escaped so that hyphens etc. will work in patterns. -- -- Wikitext: -- {wikitext...
Click to read more »Module:Citation/CS1/sandbox2
Selasa, 2023-05-09 21:35:35F O R _ U R L >------------------------------------------------------ Escape sequences for content that will be used for URL descriptions ]] local...
Click to read more »Module:Sports table/Badminton team/sandbox
Selasa, 2021-10-19 21:40:46loss_points*losses + s_pts local win_perc = '' if matches == 0 then -- Escape for zero matches win_perc = '—' else --Some sports use draw...
Click to read more »Module:Sports table/WDL/sandbox
Selasa, 2025-12-02 00:00:07local ppg = '' if tonumber(matches) == nil or matches == 0 then -- Escape for zero matches win_perc = '—' ppg = '—' else --Some...
Click to read more »Module:Internet Archive/sandbox
Kamis, 2026-05-14 09:50:38needing to be escaped: -- http://lucene.apache.org/core/4_10_0/queryparser/org/apache/lucene/queryparser/classic/package-summary.html#Escaping_Special_Characters...
Click to read more »Module:Insurgency in Mozambique detailed map/doc
Jumat, 2024-08-30 04:57:04insurgents were killed during the clashes … while the rest of militants escaped on Saturday evening” A case where there was just one source about clashes...
Click to read more »Module:Sandbox/Hike395/RS
Selasa, 2022-01-04 05:41:34switcher-label span just after the first pipe (which has already been escaped as {{!}} instead the | character) incCounter('makeOutputGsub') sortedLines[i]...
Click to read more »Module:Syrian Civil War detailed map/sandbox/doc
Kamis, 2022-10-20 20:19:31insurgents were killed during the clashes … while the rest of militants escaped on Saturday evening” A case where there was just one source about clashes...
Click to read more »Module:Sandbox/MJL/CS1/Suggestions
Sabtu, 2021-09-04 01:02:25= 'correct', Lua patterns are not REGEX though they are similar. The escape character is '%', not '\'. For more information about Lua patterns, see:...
Click to read more »Module:Somali Civil War detailed map/doc
Kamis, 2020-12-17 05:15:01insurgents were killed during the clashes … while the rest of militants escaped on Saturday evening” A case where there was just one source about clashes...
Click to read more »Module:Mali War detailed map/doc
Senin, 2022-02-14 15:37:04insurgents were killed during the clashes … while the rest of militants escaped on Saturday evening” A case where there was just one source about clashes...
Click to read more »Module:Peg solitaire diagram
Minggu, 2026-03-15 01:08:43len do local ch = mw.ustring.sub(row, i, i) if ch == '\\' then -- Escape: treat the next character literally as a label cell. if i < len then...
Click to read more »Module:Cite taxon
Kamis, 2026-05-21 21:55:53return string.gsub( id, "wfo%-", "") -- don't want this twice (must escape -) end mw.addWarning("Citations for WFO require a valid ID") return ""...
Click to read more »Module:Naval Vessel Register URL/data
Senin, 2025-07-28 07:44:58['ARL-39'] = {'1036', 'Quirinus'} }, ['ARS'] = { ['ARS-6'] = {'54', 'Escape'}, ['ARS-7'] = {'755', 'Grapple'}, ['ARS-8'] = {'4899', 'Preserver'}...
Click to read more »Module:Sandbox/Bawolff/COIEdit
Jumat, 2026-05-08 10:03:21-- Found at stack overflow, gsub('[%^%$%(%)%%%.%[%]%*%+%-%?]', '%%%1') escapes patterns. local myfullpagename = mw.getCurrentFrame():preprocess('{{FULLPAGENAME}}'...
Click to read more »Module:Mapframe/sandbox
Selasa, 2026-02-10 19:36:31if val ~= '' then -- control characters inside json need to be escaped, but stripping them is simpler -- See also T214984 -- However,...
Click to read more »Module:Music chart/sandbox
Senin, 2026-03-16 03:14:37ref then link = link .. ". " .. escapeForTable(entry.ref) end if entry.ref_note then link = link .. ". " .. escapeForTable(Template.substitute(entry...
Click to read more »Module:Sudanese Internal Conflict detailed map/doc
Kamis, 2020-12-17 12:50:50insurgents were killed during the clashes … while the rest of militants escaped on Saturday evening” A case where there was just one source about clashes...
Click to read more »Module:Cite taxon/sandbox
Jumat, 2025-11-14 23:14:28return string.gsub( id, "wfo%-", "") -- don't want this twice (must escape -) end mw.addWarning("Citations for WFO require a valid ID") return ""...
Click to read more »Module:Central African Republic Civil War detailed map/doc
Jumat, 2024-08-30 03:36:56insurgents were killed during the clashes … while the rest of militants escaped on Saturday evening” A case where there was just one source about clashes...
Click to read more »Module:Sports table/WDLHA/sandbox
Selasa, 2022-11-29 01:07:22local win_perc = '' if tonumber(matches) == nil or matches == 0 then -- Escape for zero matches win_perc = '—' else --Some sports use draw...
Click to read more »Module:Infobox gene/sandbox
Selasa, 2025-02-04 22:50:47:wikitext(symbol_url) :done() --end span :wikitext(mw.text.nowiki(aliases)) -- escape raw text so it cannot be wikitext markup :done() --end td :done()...
Click to read more »Module:User:Cscott/lpegrex
Kamis, 2023-12-21 02:08:14ast2string(child, indent, ss) elseif ty == 'string' then local escaped = child :gsub([[\]], [[\\]]) :gsub([["]], [[\"]]) ...
Click to read more »Module:Music chart
Rabu, 2026-03-18 20:33:14ref then link = link .. ". " .. escapeForTable(entry.ref) end if entry.ref_note then link = link .. ". " .. escapeForTable(Template.substitute(entry...
Click to read more »Module:Request for permission links
Minggu, 2026-01-25 23:53:55username..'}}', "([%(%)%.%%%+%-%*%?%[%^%$%]])", "%%%1" ) -- Copied from _escapePattern in [[Module:String]] for i=1,#subpages do text[i] = mw.title...
Click to read more »Module:Nagorno-Karabakh conflict detailed map/doc
Kamis, 2020-12-24 17:23:30insurgents were killed during the clashes … while the rest of militants escaped on Saturday evening” A case where there was just one source about clashes...
Click to read more »Module:Libyan Civil War detailed map/doc
Jumat, 2024-08-30 05:08:32insurgents were killed during the clashes … while the rest of militants escaped on Saturday evening” A case where there was just one source about clashes...
Click to read more »Module:Str find word/doc
Sabtu, 2026-03-28 19:20:34Implements template {{Str find word}}. This module looks for a word being present in a comma-separated list of words. It then returns a True or False value...
Click to read more »Module:Ethiopian wars and insurgencies detailed map/doc
Jumat, 2024-08-30 04:15:57insurgents were killed during the clashes … while the rest of militants escaped on Saturday evening” A case where there was just one source about clashes...
Click to read more »Module:Yemeni Civil War detailed map/doc
Selasa, 2023-10-17 07:10:04insurgents were killed during the clashes … while the rest of militants escaped on Saturday evening” A case where there was just one source about clashes...
Click to read more »Module:Ref info/sandbox
Kamis, 2024-03-21 16:56:53*cs1%-dates *= *([lsy][sy]?)') .. ']'; end break; -- loop escape end end return ret_val; end --[[--------------------------< O B J...
Click to read more »Module:Syrian Civil War detailed map/doc
Rabu, 2025-02-19 16:10:39insurgents were killed during the clashes … while the rest of militants escaped on Saturday evening” A case where there was just one source about clashes...
Click to read more »Module:Sandbox/SamuelRiv
Senin, 2022-10-24 04:17:21F O R _ U R L >------------------------------------------------------ Escape sequences for content that will be used for URL descriptions ]] local...
Click to read more »Module:Sports series
Rabu, 2025-10-15 23:43:52local escapedTitle = currentPageTitle:gsub("([%(%)%.%%%+%-%*%?%[%^%$])", "%%%1") local titlePattern = '%[%[' .. escapedTitle .. '(#[^%[%]]*%|)'...
Click to read more »Module:Sandbox/trappist the monk/langx tfd list compare
Sabtu, 2024-10-05 02:43:12Template:lang-x/doc so escaped categorization ['lang-wbp'] = true, -- did not (does now so should be found) use Template:lang-x/doc so escaped categorization...
Click to read more »Module:Sandbox/MJL/citation
Senin, 2022-10-24 04:17:31F O R _ U R L >------------------------------------------------------ Escape sequences for content that will be used for URL descriptions ]] local...
Click to read more »Module:Sports series/sandbox
Rabu, 2025-10-15 23:42:21local escapedTitle = currentPageTitle:gsub("([%(%)%.%%%+%-%*%?%[%^%$])", "%%%1") local titlePattern = '%[%[' .. escapedTitle .. '(#[^%[%]]*%|)'...
Click to read more »Module:Article history/config/sandbox
Jumat, 2025-12-19 03:09:03as -- Lua patterns, so any of the magic characters *+-.^$%[] should be escaped -- with a preceding % symbol. actionParamPrefix = 'action', actionParamSuffixes...
Click to read more »Module:Signpost/index/2014
Senin, 2024-04-29 08:13:30(above) shows a lightbulb that has been cracked, allowing inert gas to escape—and oxygen to enter, so that the tungsten filament burns. From the flames...
Click to read more »Module:Canada NTS/data
Kamis, 2026-02-12 05:06:27"", --[[ ]] ["86O10"] = "", --[[ Q22421398 ]] ["86O11"] = "Escape Rapids", --[[ ]] ["86O12"] = "", --[[ ]] ["86O13"]...
Click to read more »Module:Piechart/sandbox
Jumat, 2026-01-30 21:46:14templates? -- :gsub("{.-}", "") -- remove tags :gsub("<[^>]+>", "") -- escape special chars just in case :gsub("<", "<"):gsub(">", ">") :gsub("'"...
Click to read more »Module:Sandbox/Danmichaelo
Minggu, 2014-09-14 23:34:14pattern:gsub("([%^%$%(%)%%%.%[%]%*%+%-%?])", "%%%1"); -- pattern is not a literal string; escape lua's magic pattern characters pages = pages:gsub(pattern, ""); --...
Click to read more »Module:Sandbox/Awesome Aasim/CS1 LDoc Test
Kamis, 2025-03-13 00:56:57end --- Escape sequences for content that will be used for URL descriptions -- -- @param {string} str string to escape -- @return escaped string ...
Click to read more »Module:Piechart
Senin, 2026-01-26 02:44:18templates? -- :gsub("{.-}", "") -- remove tags :gsub("<[^>]+>", "") -- escape special chars just in case :gsub("<", "<"):gsub(">", ">") :gsub("'"...
Click to read more »Module:User:Cscott/llpeg
Kamis, 2023-12-21 04:36:47nested captures local sawEscape = false for _,c in compat.utf8codes(fmt) do if sawEscape then sawEscape = false if c < 48...
Click to read more »Module:Iraqi insurgency detailed map/doc
Rabu, 2025-01-08 19:48:51insurgents were killed during the clashes … while the rest of militants escaped on Saturday evening” A case where there was just one source about clashes...
Click to read more »Module:Signpost/index/2016
Jumat, 2025-07-18 13:06:09date = "2016-10-14", subpage = "Traffic report", title = "Debates and escapes", subhead = "Donald Trump remains a view-magnet, others change their...
Click to read more »Module:Sandbox/trappist the monk/CS1
Senin, 2022-10-24 04:17:05F O R _ U R L >------------------------------------------------------ Escape sequences for content that will be used for URL descriptions ]] local...
Click to read more »Module:Sandbox/Ahecht/r
Selasa, 2025-10-07 22:28:43open tooltip span table.insert(out, '<span title="') -- Lead-in text (escaped) local whereText = notblank(params["quote-where"]) and params["quote-where"]...
Click to read more »Module:R/sandbox
Kamis, 2026-04-23 20:49:55end -- open tooltip span out('<span title="') -- Lead-in text (escaped) local whereText = notblank(params["quote-where"]) and params["quote-where"]...
Click to read more »Module:Signpost/index/2017
Senin, 2024-04-29 08:13:38with the old, in with the new", subhead = "If you're reading this, you escaped 2016 alive", authors = {"Milowent", "Serendipodous"}, piccy = {credits...
Click to read more »Module:Sandbox/EF5
Jumat, 2025-01-31 23:18:43F O R _ U R L >------------------------------------------------------ Escape sequences for content that will be used for URL descriptions ]] local...
Click to read more »Module:Sandbox/MJL/CS1
Senin, 2022-10-24 04:16:54F O R _ U R L >------------------------------------------------------ Escape sequences for content that will be used for URL descriptions ]] local...
Click to read more »Module:Sandbox/Izno/Citation/CS1
Senin, 2022-10-24 04:16:44F O R _ U R L >------------------------------------------------------ Escape sequences for content that will be used for URL descriptions ]] local...
Click to read more »Module:Sandbox/Matthiaspaul/Citation/CS1
Rabu, 2025-05-28 21:43:36F O R _ U R L >------------------------------------------------------ Escape sequences for content that will be used for URL descriptions ]] local...
Click to read more »Module:Signpost/index/2012
Senin, 2024-04-29 08:13:24purchased by the British and used to hold prisoners of war, then to receive escaped slaves from the United States. After being used as a place of quarantine...
Click to read more »Module:Multiformat/doc
Sabtu, 2026-05-23 11:02:37This module depends on the following other modules: Module:Escape_input...
Click to read more »Module:Motd/data/2008
Senin, 2025-12-29 05:55:50[[WP:BREAK|break]] [[WP:EDIANS|myself]] no way<br>But [[WP:RTV|I don't want to escape]]<br>[[WP:Wikipediholism|I just can't stop]].]==], [==[It's nice to be...
Click to read more »Module:Sandbox/Liangent/zhwiki/Module:Citation/CS1
Sabtu, 2014-06-28 08:20:06l:gsub( "^[^|]*|(.*)$", "%1" ):gsub("^%s*(.-)%s*$", "%1"); end)); end -- Escape sequences for content that will be used for URL descriptions function safeforurl(...
Click to read more »Module:Sandbox/Bawolff/canvas
Rabu, 2025-01-22 23:08:02) :css( 'white-space', 'pre' ) :wikitext( text ) -- FIXME should we escape if ctx.direction ~= 'inherit' then textLayer:attr( 'dir', ctx.direction...
Click to read more »Module:Sandbox/Was a bee/wd20170930
Sabtu, 2017-10-07 16:37:56{"%[", singles["["]}, -- '[' needs to be escaped with '%' {"%]", singles["]"]}, -- ']' needs to be escaped with '%' {"_", doubles["_"]}, {"'", doubles["'"]}...
Click to read more »Module:Params/sandbox/frameSpoof
Minggu, 2025-09-14 08:06:33end else if flg == 2 then -- Copied from Module:String's `str._escapePattern()` ptn = ptn:gsub('[%(%)%.%%%+%-%*%?%[%^%$%]]', '%%%0') end...
Click to read more »Module:Motd/data/2011
Kamis, 2023-03-23 01:00:08will protect him. [[WP:VANDALS|Evil]] will hunt them.]==], [==[[[Escape from Monkey Island|→]] [[WP:NPA|Didgeridoo to you too!]]]==], [==[[[The...
Click to read more »Module:Sandbox/PeaceDeadC/Wd
Jumat, 2022-04-01 19:27:32singles[">"]}, {"%[", singles["%["]}, -- needs to be escaped with '%' {"%]", singles["%]"]}, -- needs to be escaped with '%' {"_", doubles["_"]}, {"'", doubles["'"]}...
Click to read more »Module:Sandbox/Psiĥedelisto/Citation
Rabu, 2025-05-28 21:44:54F O R _ U R L >------------------------------------------------------ Escape sequences for content that will be used for URL descriptions ]] local...
Click to read more »Module:Sandbox/Märt Põder
Rabu, 2025-05-28 22:04:18if val ~= '' then -- control characters inside json need to be escaped, but stripping them is simpler -- See also T214984 -- However,...
Click to read more »Module:Params/sandbox
Rabu, 2026-05-27 07:07:04end else if flg == 2 then -- Copied from Module:String's `str._escapePattern()` ptn = ptn:gsub('[%(%)%.%%%+%-%*%?%[%^%$%]]', '%%%0') end...
Click to read more »Module:Params
Rabu, 2026-04-22 21:45:28end else if flg == 2 then -- Copied from Module:String's `str._escapePattern()` ptn = ptn:gsub('[%(%)%.%%%+%-%*%?%[%^%$%]]', '%%%0') end...
Click to read more »Module:Sandbox/paddyjoy
Rabu, 2022-07-13 20:21:00res = string.gsub(res, '{{[Bb][Ss]%-?map', '{{Routemap') -- "%-" is an escape for hyphen which is used as "between" in pattern. res = string.gsub(res...
Click to read more »Module:Sandbox/trappist the monk/layurl/data
Kamis, 2022-01-27 22:05:19["ActoBiotics"] = true, ["Acts Retirement-Life Communities"] = true, ["Actuarial escape velocity"] = true, ["Acupuncture"] = true, ["Acupuncturist"] = true, ...
Click to read more »Module:Sandbox/Liinisx
Jumat, 2023-01-13 22:32:10"d:Special:EntityPage/", id end end label = mw.text.nowiki(label) -- escape raw label text so it cannot be wikitext markup if title then label...
Click to read more »Module:European and national party data/Wd
Senin, 2025-06-09 18:51:16"d:Special:EntityPage/", id end end label = mw.text.nowiki(label) -- escape raw label text so it cannot be wikitext markup if title then label...
Click to read more »Module:Ko-translit/doc
Rabu, 2026-04-15 16:56:40name + surname" order (e.g. 제임스 홍). 2. a name consisting of three or more components. \ escape character (e.g. \@ → @) for outputting literal @, $, etc....
Click to read more »Module:Signpost/index/2016/doc
Minggu, 2024-04-28 03:56:29projects for 2017 Evad37 807 2965 2016-10-14 Traffic report Debates and escapes Milowent 751 2788 2016-11-04 Arbitration report Recapping October's activities...
Click to read more »Module:Docbunto
Rabu, 2026-06-03 22:53:07then error(i18n:msg('no-markup', filepath)) end -- Remove leading escapes. content = content:gsub('^%-%-+%s*<[^>]+>\n', '') -- Remove closing...
Click to read more »Module:User:Cscott/LuaTurtle
Jumat, 2022-12-09 06:54:38return } }, ifunc.Function:new{ -- "_UnicodeEscape" name = jsval.newString("_UnicodeEscape"), id = 39, nargs = 1, max_stack = 4,...
Click to read more »