모듈:FrameWrapper 편집하기
Hsl0 (토론 | 기여)님의 2023년 8월 25일 (금) 15:45 판 (새 문서: local p = {} function p.wrap(frame) local module = frame.args[1] local func = frame.args[2] local args = {} for key, value in frame.args do if type(key) ~= 'number' then args[key] = value elseif key > 2 then args[key - 2] = value end end return require(module)[func](unpack(args)) end function p.unwrap(func, ...) local args = {...} local cframe = mw.getCurrentFrame() local frame = cframe:newChild{ title = cframe:getTitle(), args = args } return fu...)
지금 옛날 버전의 문서를 고치고 있습니다. 이것을 저장하면 최근에 편집된 부분이 사라질 수 있습니다.