Module:GetArtikel
Naar navigatie springen
Naar zoeken springen
Documentatie voor deze module kan aangemaakt worden op de volgende pagina: Module:GetArtikel/doc
local p = {} -- Use unexplained code as is. function p.maakTitel(frame) local pf = frame:getParent().args -- This line allows template parameters to be used in this code easily. The equal sign is used to define variables. 'pf' can be replaced with a word of your choice. local f = frame.args -- This line allows parameters from {{#invoke:}} to be used easily. 'f' can be replaced with a word of your choice. titel = f[1] bron = f[2] if titel == '' then return '' else return '<span style="text-align:center;font-style:italic;">' .. titel .. '</span><ref>' .. bron .. '</ref><br />' end end return p