-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathColorabbrev.lua
45 lines (32 loc) · 1.27 KB
/
Colorabbrev.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
--[[
This module creates link to games, displaying them with colored abbreviations.
Examples:
{{#invoke: Colorabbrev | UL }}
{{#invoke: Colorabbrev | RZS | RFVF}}
{{#invoke: Colorabbrev | HGSS | XY | ROZA }}
HINT: If you get an Errore Script, try to split an abbreviation into
smaller parts. For example:
{{#invoke: Colorabbrev | OACPtHGSS }} --> {{#invoke: Colorabbrev | 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: Colorabbrev | _abbr | {{{1}}} }}
--]]
-- stylua: ignore
local lib = require('Wikilib-sigle')
-- Creates the links for a single abbreviation, as a single string
local makeLinks = function(data)
return table.concat(lib.coloredAbbrLinks(data, lib.bolden))
end
-- Dynamically generated Wikicode interface
local ca = 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(ca)
return ca