Editing Module:Hatnote

From MINR.ORG WIKI

Warning: You are not logged in. Your IP address will be publicly visible if you make any edits. If you log in or create an account, your edits will be attributed to your username, along with other benefits.

The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then save the changes below to finish undoing the edit.
Latest revision Your text
Line 28: Line 28:
 
-- Removes the initial colon from a string, if present.
 
-- Removes the initial colon from a string, if present.
 
return s:match('^:?(.*)')
 
return s:match('^:?(.*)')
end
 
 
function p.findNamespaceId(link, removeColon)
 
-- Finds the namespace id (namespace number) of a link or a pagename. This
 
-- function will not work if the link is enclosed in double brackets. Colons
 
-- are trimmed from the start of the link by default. To skip colon
 
-- trimming, set the removeColon parameter to false.
 
checkType('findNamespaceId', 1, link, 'string')
 
checkType('findNamespaceId', 2, removeColon, 'boolean', true)
 
if removeColon ~= false then
 
link = removeInitialColon(link)
 
end
 
local namespace = link:match('^(.-):')
 
if namespace then
 
local nsTable = mw.site.namespaces[namespace]
 
if nsTable then
 
return nsTable.id
 
end
 
end
 
return 0
 
 
end
 
end
  
Line 75: Line 55:
 
end
 
end
  
function p.makeWikitextError(msg, helpLink, addTrackingCategory, title)
+
function p.makeWikitextError(msg, helpLink, addTrackingCategory)
 
-- Formats an error message to be returned to wikitext. If
 
-- Formats an error message to be returned to wikitext. If
 
-- addTrackingCategory is not false after being returned from
 
-- addTrackingCategory is not false after being returned from
Line 83: Line 63:
 
checkType('makeWikitextError', 2, helpLink, 'string', true)
 
checkType('makeWikitextError', 2, helpLink, 'string', true)
 
yesno = require('Module:Yesno')
 
yesno = require('Module:Yesno')
title = title or mw.title.getCurrentTitle()
+
local title = mw.title.getCurrentTitle()
 
-- Make the help link text.
 
-- Make the help link text.
 
local helpText
 
local helpText
Line 109: Line 89:
 
category
 
category
 
)
 
)
end
 
 
function p.disambiguate(page, disambiguator)
 
-- Formats a page title with a disambiguation parenthetical,
 
-- i.e. "Example" → "Example (disambiguation)".
 
checkType('disambiguate', 1, page, 'string')
 
checkType('disambiguate', 2, disambiguator, 'string', true)
 
disambiguator = disambiguator or 'disambiguation'
 
return string.format('%s (%s)', page, disambiguator)
 
 
end
 
end
  
Line 162: Line 133:
 
local page, section = link:match('^(.-)#(.*)$')
 
local page, section = link:match('^(.-)#(.*)$')
 
if page then
 
if page then
display = page .. ' § ' .. section
+
display = page .. ' § ' .. section
 
end
 
end
 
end
 
end
Line 168: Line 139:
 
-- Assemble the link.
 
-- Assemble the link.
 
if display then
 
if display then
return string.format(
+
return string.format('[[:%s|%s]]', link, display)
'[[:%s|%s]]',
 
string.gsub(link, '|(.*)$', ''), --display overwrites manual piping
 
display
 
)
 
 
else
 
else
 
return string.format('[[:%s]]', link)
 
return string.format('[[:%s]]', link)
Line 203: Line 170:
 
checkType('_hatnote', 1, s, 'string')
 
checkType('_hatnote', 1, s, 'string')
 
checkType('_hatnote', 2, options, 'table', true)
 
checkType('_hatnote', 2, options, 'table', true)
options = options or {}
+
local classes = {'hatnote'}
local classes = {'hatnote', 'navigation-not-searchable'}
 
 
local extraclasses = options.extraclasses
 
local extraclasses = options.extraclasses
 
local selfref = options.selfref
 
local selfref = options.selfref
Line 214: Line 180:
 
end
 
end
 
return string.format(
 
return string.format(
'<div role="note" class="%s">%s</div>',
+
'<div class="%s">%s</div>',
 
table.concat(classes, ' '),
 
table.concat(classes, ' '),
 
s
 
s

Please note that all contributions to MINR.ORG WIKI may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see MINR.ORG WIKI:Copyrights for details). Do not submit copyrighted work without permission!

Cancel Editing help (opens in new window)