모듈:Transclution
보이기
createTemplate[원본 편집]
위키텍스트의 틀 끼워넣기 구문을 생성합니다.
local t = require('모듈:Transclution')
t.createTemplate('foo', {'bar', 'baz', qwer = 'uiop', asdf = 'hjkl'}) -- {{foo|bar|baz|qwer=uiop|asdf=hjkl}}
createFunction[원본 편집]
위키텍스트의 파서 함수 및 상수 끼워넣기 구문을 생성합니다.
local t = require('모듈:Transclution')
t.createFunction('#foo', {'bar', 'baz', qwer = 'uiop', asdf = 'hjkl'}) -- {{#foo:bar|baz|qwer=uiop|asdf=hjkl}}
parseTemplate[원본 편집]
위키텍스트의 틀 문법을 해석합니다. name과 args 속성을 갖는 테이블을 반환하며, args 안에 인자들의 테이블이 담겨 있습니다.
local t = require('모듈:Transclution')
t.parseTemplate('{{foo|bar|qwer=uiop|baz|asdf=hjkl}}') -- {name = 'foo' , args = {'bar', 'baz', qwer = 'uiop', asdf = 'hjkl'}}
parseFunction[원본 편집]
위키텍스트의 파서 함수 및 상수 끼워넣기 문법을 해석합니다. name과 args 속성을 갖는 테이블을 반환하며, args 안에 인자들의 테이블이 담겨 있습니다.
local t = require('모듈:Transclution')
t.parseFunction('{{#foo:bar|baz|qwer=uiop|asdf=hjkl}}') -- {name = '#foo' , args = {'bar', 'baz', qwer = 'uiop', asdf = 'hjkl'}}
위 설명은 모듈:Transclution/설명문서의 내용을 가져와 보여주고 있습니다. (편집 | 역사) 이 모듈에 대한 수정 연습과 시험은 연습장 (만들기 | 미러)과 시험장 (만들기)에서 할 수 있습니다. 분류는 /설명문서에 넣어주세요. 이 모듈에 딸린 문서. |
local p = {}
function p.createTemplate(name, args)
if not args or #args <= 0 then
return '{{' .. name .. '}}'
end
local txt = '{{' .. name
for index, value in ipairs(args) do
txt = txt .. '|' .. mw.text.encode(value)
end
for key, value in pairs(args) do
key = tonumber(key) or key
if not (type(key) == 'number' and key <= #args) then
txt = txt .. '|' .. mw.text.encode(key) .. '=' .. mw.text.encode(value)
end
end
return txt .. '}}'
end
function p.createFunction(name, args)
return p.createTemplate(name .. (args and #args >= 1 and ':' .. table.remove(args, 1) or ''), args)
end
function p.parseTemplate(text)
return mw.text.jsonDecode(mw.getCurrentFrame():preprocess('{{#invoke:Transclution/proxy|' .. text:sub(3)))
end
function p.parseFunction(text)
local parsed = p.parseTemplate(text)
local spl = mw.text.split(parsed.name, ':')
parsed.name = table.remove(spl, 1)
table.insert(parsed.args, 1, table.concat(spl, ':'))
return parsed
end
return p