Open main menu

Changes

Module:Section link

203 bytes added, 19 January
m
1 revision imported
-- This module implements {{section link}}.
require('Module:No globalsstrict');
local checkType = require('libraryUtil').checkType
display = display or section
page = page or ''
-- MediaWiki doesn't allow these in `page`, so only need to do for `section`
if type(section) == 'string' then
section = string.gsub(section, "{", "{")
section = string.gsub(section, "}", "}")
end
return string.format('[[%s#%s|%s]]', page, section, display)
end