모듈:한글조합: 두 판 사이의 차이
둘러보기로 이동
검색으로 이동
백괴게임>Gustmd7410 잔글편집 요약 없음 |
백괴게임>Gustmd7410 잔글편집 요약 없음 |
||
19번째 줄: | 19번째 줄: | ||
local after = frame.args[3] | local after = frame.args[3] | ||
-- sub는 한 글자에 3씩 (1, 3) | |||
-- mw.ustring.codepoint(글자, 초중종) | -- mw.ustring.codepoint(글자, 초중종) | ||
-- han.cho[cho] .. han.jung[jung] .. han.jong[jong] | -- han.cho[cho] .. han.jung[jung] .. han.jong[jong] |
2018년 7월 29일 (일) 01:55 판
위 설명은 모듈:한글조합/설명문서의 내용을 가져와 보여주고 있습니다. (편집 | 역사) 이 모듈에 대한 수정 연습과 시험은 연습장 (만들기 | 미러)과 시험장 (만들기)에서 할 수 있습니다. 분류는 /설명문서에 넣어주세요. 이 모듈에 딸린 문서. |
local p = {}
function CGI2param(params)
local data = {}
local index = 1
for key in pairs(params) do
data[index] = {set = {key, params[key]}}
index = index + 1
end
return mw.text.jsonEncode(data):sub(2, -2) .. ','
end
function p.typ(frame)
local han = mw.text.jsonDecode(frame:expandTemplate{title = '모듈:한글조합/한글'})
local key = frame.args[1]
local before = frame.args[2]
local after = frame.args[3]
-- sub는 한 글자에 3씩 (1, 3)
-- mw.ustring.codepoint(글자, 초중종)
-- han.cho[cho] .. han.jung[jung] .. han.jong[jong]
end
return p