Changes

Jump to navigation Jump to search
665 bytes added ,  18:18, 5 September 2022
Reordered helper functions (first by export status, then alphabetically) and migrated p.quote upstream from Module:Redirect hatnote (includes contributions by Tamzin and Nihiltres)
Line 19: Line 19:  
-- Helper functions
 
-- Helper functions
 
--------------------------------------------------------------------------------
 
--------------------------------------------------------------------------------
  −
local curNs = mw.title.getCurrentTitle().namespace
  −
p.missingTargetCat =
  −
--Default missing target category, exported for use in related modules
  −
((curNs ==  0) or (curNs == 14)) and
  −
'Articles with hatnote templates targeting a nonexistent page' or nil
      
local function getArgs(frame)
 
local function getArgs(frame)
Line 36: Line 30:  
-- 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.defaultClasses(inline)
 +
-- Provides the default hatnote classes as a space-separated string; useful
 +
-- for hatnote-manipulation modules like [[Module:Hatnote group]].
 +
return
 +
(inline == 1 and 'hatnote-inline' or 'hatnote') .. ' ' ..
 +
'navigation-not-searchable'
 +
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 mw.ustring.format('%s (%s)', page, disambiguator)
 
end
 
end
   Line 97: Line 108:  
end
 
end
   −
function p.disambiguate(page, disambiguator)
+
local curNs = mw.title.getCurrentTitle().namespace
-- Formats a page title with a disambiguation parenthetical,
+
p.missingTargetCat =
-- i.e. "Example" → "Example (disambiguation)".
+
--Default missing target category, exported for use in related modules
checkType('disambiguate', 1, page, 'string')
+
((curNs ==  0) or (curNs == 14)) and
checkType('disambiguate', 2, disambiguator, 'string', true)
+
'Articles with hatnote templates targeting a nonexistent page' or nil
disambiguator = disambiguator or 'disambiguation'
  −
return mw.ustring.format('%s (%s)', page, disambiguator)
  −
end
     −
function p.defaultClasses(inline)
+
function p.quote(title)
-- Provides the default hatnote classes as a space-separated string; useful
+
--Wraps titles in quotation marks. If the title starts/ends with a quotation
-- for hatnote-manipulation modules like [[Module:Hatnote group]].
+
--mark, kerns that side as with {{-'}}
return
+
local quotationMarks = {
(inline == 1 and 'hatnote-inline' or 'hatnote') .. ' ' ..
+
["'"]=true, ['"']=true, ['“']=true, ["‘"]=true, ['”']=true, ["’"]=true
'navigation-not-searchable'
+
}
 +
local quoteLeft, quoteRight = -- Test if start/end are quotation marks
 +
quotationMarks[string.sub(title,  1,  1)],
 +
quotationMarks[string.sub(title, -1, -1)]
 +
if quoteLeft or quoteRight then
 +
title = mw.html.create("span"):wikitext(title)
 +
end
 +
if quoteLeft  then title:css("padding-left",  "0.15em") end
 +
if quoteRight then title:css("padding-right", "0.15em") end
 +
return '"' .. tostring(title) .. '"'
 
end
 
end
  
Anonymous user

Navigation menu