본문으로 이동

모듈: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'}}


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