Module:Hatnote: Difference between revisions
Jump to navigation
Jump to search
sorry about that; we need to keep findNamespaceId around for other modules
>Qed237 (Reverted 1 edit by Mr. Stradivarius (talk): Error in module:main while using module:sports table. (TW)) |
>Mr. Stradivarius (sorry about that; we need to keep findNamespaceId around for other modules) |
||
Line 35: | Line 35: | ||
-- are trimmed from the start of the link by default. To skip colon | -- are trimmed from the start of the link by default. To skip colon | ||
-- trimming, set the removeColon parameter to true. | -- trimming, set the removeColon parameter to true. | ||
-- | |||
-- This function is used by other modules, e.g. [[Module:Main]]. | |||
checkType('findNamespaceId', 1, link, 'string') | checkType('findNamespaceId', 1, link, 'string') | ||
checkType('findNamespaceId', 2, removeColon, 'boolean', true) | checkType('findNamespaceId', 2, removeColon, 'boolean', true) | ||
Line 135: | Line 137: | ||
function p._formatLink(link, display) | function p._formatLink(link, display) | ||
checkType('_formatLink', 1, link, 'string') | checkType('_formatLink', 1, link, 'string') | ||
checkType('_formatLink', 2, display, 'string', true) | checkType('_formatLink', 2, display, 'string', true) | ||
-- Remove the initial colon for links where it was specified manually. | |||
link = removeInitialColon(link) | link = removeInitialColon(link) | ||
-- Find whether a faux display value has been added with the {{!}} magic | -- Find whether a faux display value has been added with the {{!}} magic | ||
Line 169: | Line 161: | ||
-- Assemble the link. | -- Assemble the link. | ||
if display then | if display then | ||
return string.format('[[ | return string.format('[[:%s|%s]]', link, display) | ||
else | else | ||
return string.format('[[ | return string.format('[[:%s]]', link) | ||
end | end | ||
end | end |