Module:Hatnote and Module:Hatnote/sandbox: Difference between pages
Appearance
(Difference between pages)
Content deleted Content added
Revert |
Export default classes |
||
Line 19: | Line 19: | ||
-- Helper functions |
-- Helper functions |
||
-------------------------------------------------------------------------------- |
-------------------------------------------------------------------------------- |
||
⚫ | |||
⚫ | |||
⚫ | |||
⚫ | |||
⚫ | |||
local function getArgs(frame) |
local function getArgs(frame) |
||
Line 30: | Line 36: | ||
-- Removes the initial colon from a string, if present. |
-- Removes the initial colon from a string, if present. |
||
return s:match('^:?(.*)') |
return s:match('^:?(.*)') |
||
⚫ | |||
function p.defaultClasses(inline) |
|||
⚫ | |||
⚫ | |||
⚫ | |||
⚫ | |||
⚫ | |||
end |
|||
⚫ | |||
⚫ | |||
⚫ | |||
⚫ | |||
⚫ | |||
⚫ | |||
⚫ | |||
end |
end |
||
Line 108: | Line 97: | ||
end |
end |
||
⚫ | |||
⚫ | |||
⚫ | |||
⚫ | |||
⚫ | |||
⚫ | |||
⚫ | |||
⚫ | |||
⚫ | |||
⚫ | |||
⚫ | |||
⚫ | |||
⚫ | |||
function p. |
function p.defaultClasses(inline) |
||
⚫ | |||
--Wraps titles in quotation marks. If the title starts/ends with a quotation |
|||
⚫ | |||
--mark, kerns that side as with {{-'}} |
|||
⚫ | |||
local quotationMarks = { |
|||
⚫ | |||
["'"]=true, ['"']=true, ['“']=true, ["‘"]=true, ['”']=true, ["’"]=true |
|||
⚫ | |||
} |
|||
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 |
||
Line 136: | Line 119: | ||
-- Produces standard hatnote text. Implements the {{hatnote}} template. |
-- Produces standard hatnote text. Implements the {{hatnote}} template. |
||
-------------------------------------------------------------------------------- |
-------------------------------------------------------------------------------- |
||
p[''] = function (frame) return p.hatnote(frame:newChild{ title = "Template:Hatnote" }) end |
|||
function p.hatnote(frame) |
function p.hatnote(frame) |