Jump to content

Module:Essay sidebar: Difference between revisions

From Marxist Wiki
Created page with "-- 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\'\'\'')..."
 
m Protected "Module:Essay sidebar" ([Edit=Allow only administrators] (indefinite))
 
(No difference)

Latest revision as of 00:57, 13 March 2025

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