Module:Sandbox: Difference between revisionsGive feedback
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
| Line 32: | Line 32: | ||
local function process_newlines(text) | local function process_newlines(text) | ||
if not text then return text end | if not text then return text end | ||
-- | -- Replace "n with newline character | ||
text = text:gsub(' | text = text:gsub('"n', '\n') | ||
return text | return text | ||
end | end | ||