Modulo:Blackabbrev
Questo modulo non ha ancora un manuale. Creane uno!
--[[
This module creates link to games, displaying them in colored background.
Examples:
{{#invoke: Blackabbrev | UL }}
{{#invoke: Blackabbrev | RZS | RFVF}}
{{#invoke: Blackabbrev | HGSS | XY | ROZA }}
HINT: If you get an Errore Script, try to split an abbreviation into
smaller parts. For example:
{{#invoke: Blackabbrev | OACPtHGSS }} --> {{#invoke: Blackabbrev | OAC | Pt | HGSS }}
However, this doesn't work if the first abbreviation is not constant, for
example if it's a parameter in a template. In that case, you can use the
_abbr function to pass all the abbreviations as parameters:
{{#invoke: Blackabbrev | _abbr | {{{1}}} }}
--]]
local lib = require('Modulo:Wikilib/sigle')
-- Creates the links for a single abbreviation, as a single string
local makeLinks = function(data)
return table.concat(lib.backgroundAbbrLinks(data, lib.bolden))
end
-- Dynamically generated Wikicode interface
local ba = lib.mapAbbrs(function(_, abbr)
--[[
Wikicode arguments are first processed one-by-one by makeLinks,
resulting in a table having a string for every argument, containing
all the links. These strings are then concatenated.
--]]
return lib.onMergedAbbrs(abbr, makeLinks)
end)
-- Adding _abbr proxy function
lib.proxy(ba)
return ba