Изворни код странице Модул:Su
← Модул:Su
Пређи на навигацију
Пређи на претрагу
Немате дозволу да уређујете ову страницу из следећег разлога:
Можете да видите и копирате извор ове странице.
-- This module implements {{su}}.
local p = {}
function p.main(frame)
-- Use arguments from the parent frame only, and remove any blank arguments.
-- We don't need to trim whitespace from any arguments, as this module only
-- uses named arguments, and whitespace is trimmed from them automatically.
local origArgs = frame:getParent().args
local args = {}
for k, v in pairs(origArgs) do
if v ~= '' then
args[k] = v
end
end
-- Define the variables to pass to luaMain.
local sup = args.p
local sub = args.b
local options = {
000
1:0
Шаблони који се користе на овој страници:
- Шаблон:Code (извор)
- Шаблон:Su2 (извор)
- Шаблон:Tl (извор)
- Модул:Su (извор)
- Модул:Su/док (извор)
Назад на страницу Модул:Su.