Tài liệu mô đun[tạo]
--[[
rawimage
 
Điểm vào chính của hàm Lua để thay cho {{hình thô}}
 
Cách dùng:
    Để gọi mô đun trực tiếp, dùng:
    Nhưng nên dùng thông qua bản mẫu:
        {{ hình thô | tên_trang }}
     
    'tên_trang' sẽ là tên của một trang trong không gian tên Trang, có hoặc không có "Trang:" phía trước.
    
    
NOTE FOR EDITORS: rawimage displays images centred in the user's standard thumb size.
It is not recommended to offer further display options, as this would disincentivise
the replacement of raw images.
]]

RawImage = {};

function RawImage.rawimage(frame)
    inpage = mw.title.getCurrentTitle():inNamespace("Page")

    pagename = frame.args["pagename"]
    
    -- check if the pagename hasn't been passed
    if pagename == nil then
        return '<span style="color:red;">\'\'\'Lỗi: gọi bằng {{hình thô|' .. mw.title.getCurrentTitle().text .. '}}\'\'\'</span>'
    end

    if pagename == '' then
        return '<span style="color:red;">\'\'\'Lỗi: gọi bằng {{hình thô|' .. mw.title.getCurrentTitle().text .. '}}\'\'\'</span>'
    end

    -- check if the pagename has been given with "Page:" in front. If so, strip it
    if pagename:sub(1,5) == 'Page:' then
        pagename = pagename:sub(6)
    end

    -- find the last / in the pagename
    slash = string.reverse(pagename):find('/')
    if slash ~= nil then
        slash = #pagename - slash + 1
    end
    
    if slash == nil then
        -- there is no slash, this page corresponds to a single-page image
        if inpage then
            category = 'Trang có hình thô'
        else
            category = 'Nội dung có hình thô'
        end
        return '[[Tập_tin:' .. pagename .. '|frameless|center|360px]][[Thể_loại:' .. category .. ']]'
    else
        -- this page title contains a slash, so compose the name of the hi-res file.
        pagebase = pagename:sub(0,slash-1)
        pagenum = pagename:sub(slash+1)
        hiRes = 'Tập_tin:' .. pagebase .. '-' .. pagenum .. '.png'
        
        -- check if the hi-ref version exists
        if mw.title.new(hiRes).exists then
            -- hi-res version exists, let's link to it
            if inpage then
                category = 'Trang có hình thô (có bản scan phân giải cao)'
            else
                category = 'Nội dung có hình thô'
            end
            
            return frame:expandTemplate{title='khối giữa',args={'[[' .. hiRes .. '|frameless|center|360px]]' .. frame:expandTemplate{title='phải', args={frame:expandTemplate{title='khối x-nhỏ', args={'([[:' .. hiRes .. '|Hãy cải tiến hình này]])'}}}}}} .. '[[Thể_loại:' .. category .. ']]'
        else
            -- hi-res version doesn't exists, let's link to source page
            if inpage then
                category = 'Trang có hình thô'
            else
                category = 'Nội dung có hình thô'
            end

            return frame:expandTemplate{title='khối giữa',args={'[[Tập_tin:' .. pagebase .. '|page=' .. pagenum .. '|frameless|center|360px]]' .. frame:expandTemplate{title='phải', args={frame:expandTemplate{title='khối x-nhỏ', args={'(Tải hình để thay cho khung này.)'}}}}}} .. '[[Thể_loại:' .. category .. ']]'
        end
    end
end

return RawImage