Lompat ke isi

Modul:Break

Halaman yang dilindungi
Dari Wikipedia bahasa Indonesia, ensiklopedia bebas
Revisi sejak 10 September 2013 05.30 oleh Farras (bicara | kontrib) (←Membuat halaman berisi '-- This module implements {{break}} local p = {} function p.main( frame ) local num = frame.args[1] or '' num = tonumber( num ) if not num or num < 1 or ...')
(beda) ← Revisi sebelumnya | Revisi terkini (beda) | Revisi selanjutnya → (beda)

-- This module implements {{break}}

local p = {}

function p.main( frame )
    local num = frame.args[1] or ''
    num = tonumber( num )
    if not num or num < 1 or math.floor( num ) ~= num or num == math.huge then
        num = 1
    end
    return mw.ustring.rep( '<br />', num )
end

return p