8,282
edits
No edit summary Tag: Manual revert |
(Add support for custom hex code colors) |
||
(13 intermediate revisions by the same user not shown) | |||
Line 139: | Line 139: | ||
-- link = nil | -- link = nil | ||
-- end | -- end | ||
-- local link = args.link or '' | |||
-- if link == '' then | |||
-- if mod then -- <----- this if statement is edited too | |||
-- if mod == "parallel" then | |||
-- link = name | |||
-- else | |||
-- link = i18n.modLink:gsub( '%$1', mod ):gsub( '%$2', name ) | |||
-- end | |||
-- else | |||
-- link = name:gsub( '^' .. i18n.prefixes.damaged .. ' ', '' ) .. ' (Vanilla)' | |||
-- for _, suffix in pairs( i18n.suffixes ) do | |||
-- link = link:gsub( ' ' .. suffix .. '$', '' ) | |||
-- end | |||
-- end | |||
-- elseif link:lower() == 'none' then | |||
-- link = nil | |||
-- end | |||
-- if link == pageName then | |||
-- link = nil | |||
-- end | |||
local link = args.link or '' | local link = args.link or '' | ||
Line 149: | Line 170: | ||
end | end | ||
else | else | ||
link = | if mw.title.new(name).exists == false then | ||
link = i18n.modLink:gsub( '%$1', 'mcwiki' ):gsub( '%$2', name ) | |||
else | |||
link = name:gsub( '^' .. i18n.prefixes.damaged .. ' ', '' ) | |||
for _, suffix in pairs( i18n.suffixes ) do | |||
link = link:gsub( ' ' .. suffix .. '$', '' ) | |||
end | |||
end | end | ||
end | end | ||
Line 159: | Line 184: | ||
if link == pageName then | if link == pageName then | ||
link = nil | link = nil | ||
end | end | ||
local formattedTitle | local formattedTitle | ||
Line 168: | Line 193: | ||
plainTitle = title:gsub( '\\\\', '\' ):gsub( '\\&', '&' ) | plainTitle = title:gsub( '\\\\', '\' ):gsub( '\\&', '&' ) | ||
local | local formatPatterns = {'&[0-9a-jl-qs-vyzr]', '&#%x%x%x%x%x%x', '&$%x%x%x'} | ||
if plainTitle:match( formatPattern ) then | for _, formatPattern in ipairs( formatPatterns ) do | ||
if plainTitle:match( formatPattern ) then | |||
formattedTitle = title | |||
plainTitle = plainTitle:gsub( formatPattern, '' ) | |||
end | |||
end | end | ||