Module:Aligned dates list

local p = {}

function p.main(frame)
    local output = {}
    local monthNames = {"Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"}
    local daysInMonth = {31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}

    local function generateSuffixes()
        local suffixes = {""}
        for char = string.byte("b"), string.byte("z") do
            table.insert(suffixes, string.char(char))
        end
        return suffixes
    end

    local suffixes = generateSuffixes()

    for month = 1, 12 do
        local monthName = monthNames[month]
        local days = daysInMonth[month]

        for day = 1, days do
            for _, suffix in ipairs(suffixes) do
                local key1 = string.format("%02d-%02d%s", month, day, suffix)
                local key2 = string.format("%s %02d%s", string.sub(monthName, 1, 3), day, suffix)
                local key3 = string.format("%s %02d%s", string.lower(string.sub(monthName, 1, 3)), day, suffix)
                local value = frame:getParent().args[key1] or frame:getParent().args[key2] or frame:getParent().args[key3]

                if value then
                    table.insert(output, string.format('<div><div style="width:4em;display:inline-block;">%s %d</div> <div style="display:inline-block;">%s</div></div>', monthName, day, value))
                end
            end
        end
    end

    return table.concat(output)
end

return p

Content Disclaimer

Informasi ini disarikan dari Wikipedia dan disajikan kembali untuk tujuan edukasi. Konten tersedia di bawah lisensi CC BY-SA 3.0. Kami tidak bertanggung jawab atas ketidakakuratan data yang bersumber dari kontribusi publik tersebut.

  1. The information displayed on this website is sourced in part or in whole from Wikipedia and has been adapted for the purpose of restating it. We strive to provide accurate and relevant information, however:
  2. There is no guarantee of absolute accuracy. Wikipedia is an open, collaborative project that can be edited by anyone, so information is subject to change.
  3. It is not intended to constitute professional advice. The content displayed is for informational and educational purposes only. For important decisions (e.g., medical, legal, or financial), please consult a professional.
  4. Content copyright. Wikipedia is licensed under the Creative Commons Attribution-ShareAlike License (CC BY-SA). This means that content may be reused with appropriate attribution and shared under a similar license.
  5. Responsible use. Any risk arising from the use of information from this website is entirely the responsibility of the user.