Content deleted Content added
per request |
don't remove zwj and zwnj |
||
Line 12:
--]]
local WRAPPER_TEMPLATE, args = 'Template:Asbox'
local templatestyles = 'Asbox/sandbox/styles.css'
local p, Buffer, stubCats = {
--Prevents dupli-cats... get it? Maybe not?
Line 78:
local function catStub(page, pageDoc)
stubCats = {missing = {}, v = {}}
-- zwj and zwnj have semantical use in other other wikis, don't remove them
disallowedUnicodeChars = '[^%w%p%s]' -- for i18n we make this a separate string▼
local zwj = '\226\128\141' -- U+200D, E2 80 8D
local zwnj = '\226\128\140' -- U+200C, E2 80 8C
▲ disallowedUnicodeChars = '[^%w%p%s' .. zwj .. zwnj .. ']' -- for i18n we make this a separate string
local code
for k, _ in pairs(args) do
Line 250 ⟶ 253:
:allDone()
:node(args.name and
require'Module:Navbar/sandbox'._navbar{
args.name,
mini = 'yes',
|