모듈:QuickPage

삼쩌모 (토론 | 기여)님의 2026년 1월 24일 (토) 17:59 판 (새 문서: -- Module:QuickPage local p = {} function p.render(frame) local out = { '<div class="quickpage-container qp-card"></div>' } return table.concat(out, '\n') end return p)
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

이 모듈에 대한 설명문서는 모듈:QuickPage/설명문서에서 만들 수 있습니다

-- Module:QuickPage
local p = {}

function p.render(frame)
    local out = {
        '<div class="quickpage-container qp-card"></div>'
    }
    return table.concat(out, '\n')
end

return p