Jump to content

Module:Citation/CS1

Permanently protected module
From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Uncle G (talk | contribs) at 11:17, 25 August 2012 (Added missing function parameter.). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

local p = {}
-- This is used by templates such as {{Harvard citation}} to create the Harvard footnote.
function p.Harvard()
    return "PLACEHOLDER"
end
-- This is used by templates such as {{SfnRef}} to create the (encoded) anchor name for a Harvard cross-reference hyperlink.
function p.SFNID(frame)
    local pframe = frame:getParent()
    local P1 = pframe.args[1] or ""
    local P2 = pframe.args[2] or ""
    local P3 = pframe.args[3] or ""
    local P4 = pframe.args[4] or ""
    local P5 = pframe.args[4] or ""
    return "CITEREF" .. P1 .. P2 .. P3 .. P4 .. P5
end
return p