Module:ExtractTitle

Revision as of 16:13, 23 May 2026 by JL (talk | contribs) (1 revision imported)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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

local p = {}

function p.main(frame)
    local text = frame.args[1] or ""
    -- Remove any substring like " (Something)" at the end or within the string
    text = mw.ustring.gsub(text, "%s*%b()", "")
    return text
end

return p