Module:Shortcut: Difference between revisions

From Test Wiki
Content deleted Content added
allow output if no shortcuts are set but msg is present
use wikilinks rather than URLs, as it would change the redlink behaviour, and that's better done after it is discussed
Line 73: Line 73:
:tag('ul')
:tag('ul')
for i, shortcut in ipairs(shortcuts) do
for i, shortcut in ipairs(shortcuts) do
shortcutList:tag('li'):wikitext(string.format(
local url = mw.uri.fullUrl(shortcut, {redirect = 'no'})
'[[%s]]',
url = tostring(url)
shortcut
local link = string.format('[%s %s]', url, shortcut)
))
shortcutList:tag('li'):wikitext(link)
end
end
if options.msg then
if options.msg then