Module:GetArtikel

Uit HisGIS
Versie door Thomas (overleg | bijdragen) op 3 jul 2018 om 14:29 (Nieuwe pagina aangemaakt met 'local p = {} -- Use unexplained code as is. function maakTitel(titel, bron) -- One can define custom functions for use. Here we define a function 'lucky' that has...')
(wijz) ← Oudere versie | Huidige versie (wijz) | Nieuwere versie → (wijz)
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 maakTitel(titel, bron) -- One can define custom functions for use. Here we define a function 'lucky' that has two inputs a and b. The names are of your choice.
	if titel == '' then 
		return '<span style="text-align:center;font-style:italic;">' + titel + "</span><ref>" + bron + "</ref>" 
	else 
		return ''
	end
end

return p