Module:Sandbox/LVL

From The Deadlock Wiki
Revision as of 23:27, 5 July 2026 by LVL (talk | contribs) (Replaced content with "local p = {} function p.replaceNewlines(frame) local text = frame.args[1] or '' -- Replace \r\n or \n with <br/> text = text:gsub('\r\n', '<br/>'):gsub('\n', '<br/>') return text end return p")
Jump to navigation Jump to search

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

local p = {}

function p.replaceNewlines(frame)
    local text = frame.args[1] or ''
    -- Replace \r\n or \n with <br/>
    text = text:gsub('\r\n', '<br/>'):gsub('\n', '<br/>')
    return text
end

return p