본문으로 이동

모듈:연습장: 두 판 사이의 차이

리버티게임, 모두가 만들어가는 자유로운 게임
BANIP (토론 | 기여)
잔글 내용을 "local p = {} function p.uselib(frame) return mw[frame.args[1]][frame.args[2]](frame.args[3]) end return p"(으)로 바꿈
태그: 대체됨
Hsl0 (토론 | 기여)
편집 요약 없음
 
(사용자 2명의 중간 판 15개는 보이지 않습니다)
1번째 줄: 1번째 줄:
-- Module:RedirectHelper
local p = {}
local p = {}
 
function p.uselib(frame)
function p.redirect(frame)
     return mw[frame.args[1]][frame.args[2]](frame.args[3])
     local targetPage = frame.args[1]
    if targetPage then
        return "#REDIRECT [[" .. targetPage .. "]]"
    end
    return ""
end
 
function p.args(frame)
local args = {}
for key, value in pairs(frame.args) do
table.insert(args, {key, value})
end
return mw.text.jsonEncode(args)
end
 
function p.hello(frame)
local to = frame.args[1]
local child = frame:newChild{title = 'Hello', args = {to}}
return child:preprocess('Hello, {{{1}}}!')
end
 
function p.sections(wikitext)
local frame = mw.getCurrentFrame()
for _, line in ipairs(mw.text.split(mw.text.killMarkers(frame:preprocess(wikitext)), '\n')) do
local eq, section = line:match('^(=+)(.+)%1$')
if section then
mw.log(#eq, mw.text.trim(section))
end
end
end
end


return p
return p

2025년 3월 30일 (일) 23:28 기준 최신판


모듈 설명문서[보기] [편집] [역사] [새로 고침]

자유롭게 모듈의 사용법을 익힐 수 있는 연습장입니다.

  1. 장기간에 걸쳐 수정이 필요한 경우 별도로 모듈페이지를 만드는 것을 추천합니다.
  2. 다음 문서가 도움이 될 수 있습니다.
  3. 다른 이름공간에 대한 연습은 아래에서 가능합니다.
  4. 낙서장을 비우려면 여기를 클릭하세요.


-- Module:RedirectHelper

local p = {}

function p.redirect(frame)
    local targetPage = frame.args[1]
    if targetPage then
        return "#REDIRECT [[" .. targetPage .. "]]"
    end
    return ""
end

function p.args(frame)
	local args = {}
	
	for key, value in pairs(frame.args) do
		table.insert(args, {key, value})
	end
	
	return mw.text.jsonEncode(args)
end

function p.hello(frame)
	local to = frame.args[1]
	local child = frame:newChild{title = 'Hello', args = {to}}
	return child:preprocess('Hello, {{{1}}}!')
end

function p.sections(wikitext)
	local frame = mw.getCurrentFrame()
	for _, line in ipairs(mw.text.split(mw.text.killMarkers(frame:preprocess(wikitext)), '\n')) do
		local eq, section = line:match('^(=+)(.+)%1$')
		if section then
			mw.log(#eq, mw.text.trim(section))
		end
	end
end

return p