Moduł:Garnweidner1994
Wygląd
Użycie
[edytuj kod]Podmoduły:
Opis parametrów
[edytuj kod]Przykład
[edytuj kod]Błędy
[edytuj kod]Błędy należy zgłaszać na stronie Wikipedia:Kawiarenka/Kwestie techniczne.
Parametry szablonu (strukturyzacja VE)
[edytuj kod]Zobacz też
[edytuj kod]
Powyższy opis jest dołączany ze strony Moduł:Garnweidner1994/opis. (edytuj | historia)
Zobacz podstrony tego modułu.
Zobacz podstrony tego modułu.
local p = {}
-- Polska nazwa gatunkowa
function p.PL(frame)
local nr = frame.args[1] and tonumber(mw.text.trim(frame.args[1]))
if(not nr) then return end
local PL_ = mw.loadData( 'Module:Garnweidner1994/PL' )
local PL = PL_ [nr]
result = PL return result end
-- Łacińska nazwa gatunkowa
function p.LA(frame)
local nr = frame.args[1] and tonumber(mw.text.trim(frame.args[1]))
if(not nr) then return end
local LA_ = mw.loadData( 'Module:Garnweidner1994/LA' )
local LA = LA_ [nr]
result = LA return result end
-- Numer strony
function p.STR(frame)
local STR = require( "Module:Garnweidner1994/STR" )
local value = STR.STR(frame)
return value end
return p