모듈:Iloop: 두 판 사이의 차이
둘러보기로 이동
검색으로 이동
백괴게임>Gustmd7410 잔글편집 요약 없음 |
백괴게임>Gustmd7410 편집 요약 없음 |
||
1번째 줄: | 1번째 줄: | ||
local hook = require('모듈:Hooks') | |||
return { | return { | ||
loop = function(frame) | loop = function(frame) | ||
6번째 줄: | 8번째 줄: | ||
local from = tonumber(frame.args[4]) or 1 | local from = tonumber(frame.args[4]) or 1 | ||
text = text:gsub('{{#keep#:(.-)}}', '{{%1}}') | text = text:gsub('{{#keep#:(.-)}}', '{{%1}}') | ||
text = hook.parse(text, 'param', function(frame) | |||
if frame.args[2] | |||
then return '{{{' .. frame.args[1] .. '|' .. frame.args[2] .. '}}}' | |||
else return '{{{' .. frame.args[1] .. '}}}' | |||
end | |||
end) | |||
local value = '' | local value = '' | ||
for index = from, finish, times do | for index = from, finish, times do | ||
value = value .. text | value = value .. hook.parse(text, 'index', index) | ||
end | end | ||
2018년 7월 13일 (금) 18:23 판
위 설명은 모듈:Iloop/설명문서의 내용을 가져와 보여주고 있습니다. (편집 | 역사) 이 모듈에 대한 수정 연습과 시험은 연습장 (만들기 | 미러)과 시험장 (만들기)에서 할 수 있습니다. 분류는 /설명문서에 넣어주세요. 이 모듈에 딸린 문서. |
local hook = require('모듈:Hooks')
return {
loop = function(frame)
local text = frame.args[1]
local finish = tonumber(frame.args[2])
local times = tonumber(frame.args[3]) or 1
local from = tonumber(frame.args[4]) or 1
text = text:gsub('{{#keep#:(.-)}}', '{{%1}}')
text = hook.parse(text, 'param', function(frame)
if frame.args[2]
then return '{{{' .. frame.args[1] .. '|' .. frame.args[2] .. '}}}'
else return '{{{' .. frame.args[1] .. '}}}'
end
end)
local value = ''
for index = from, finish, times do
value = value .. hook.parse(text, 'index', index)
end
return frame:preprocess(value)
end
}