Jump to content

Module:Essay sidebar

From Marxist Wiki
Revision as of 00:57, 13 March 2025 by Thehighwayman (talk | contribs) (Protected "Module:Essay sidebar" ([Edit=Allow only administrators] (indefinite)))
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Documentation for this module may be created at Module:Essay sidebar/doc

-- This module implements collapsing a div for the "Last Updated" section.
-- doesn't work yet.

local p = {}

function p.collapse(frame)
    local content = frame.args[1] or ''
    local isExpanded = frame.args.expanded == 'yes'

    local collapseClass = isExpanded and '' or 'mw-collapsed'

    local result = mw.html.create('div')
    result:addClass('lastupdate-container')
    result
        :wikitext('\'\'\'<span class="collapse-icon">▼</span> Last Updated\'\'\'')
        :tag('div')
        :addClass('collapsible-content ' .. collapseClass)
        :wikitext(content)

    return tostring(result)
end

return p