Module:Citation/CS1/Engine

From AviationSafetyX Wiki
Jump to navigation Jump to search

Documentation for this module may be created at Module:Citation/CS1/Engine/doc

local p = {}

function p.citation(frame, cfg)
    -- Return proper HTML reference using frame + config
    local cite = mw.html.create('span')
    -- cite:wikitext('[citation placeholder]')
    return tostring(cite)
end

return p