Module:Transclude: Difference between revisions
From Teriock
More actions
Created page with "local p = {} -- Helper function to trim whitespace from a string local function trim(s) return s:match('^%s*(.-)%s*$') end -- Main function to transclude pages function p.transclude(frame) local input = frame.args[1] or '' local output = {} -- Split input into lines for line in input:gmatch('[^\r\n]+') do -- Trim whitespace and add transclusion syntax local page = trim(line) if page ~= '' then table.insert(ou..." |
No edit summary |
||
| (17 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
local p = {} | local p = {} | ||
function p.transclude(frame) | function p.transclude(frame) | ||
local | -- Get and preprocess the input | ||
local | local raw_input = frame.args[1] or '' | ||
local processed_input = 'yoggle' .. raw_input:gsub('E', 's') .. 'yoggle' | |||
-- | -- Debug output | ||
return string.format( | |||
"Raw input:\n<pre>%s</pre>\n\nProcessed input:\n<pre>%s</pre>", | |||
raw_input, | |||
processed_input | |||
) | |||
end | end | ||
return p | return p | ||
Latest revision as of 11:53, 14 January 2025
Documentation for this module may be created at Module:Transclude/doc
local p = {}
function p.transclude(frame)
-- Get and preprocess the input
local raw_input = frame.args[1] or ''
local processed_input = 'yoggle' .. raw_input:gsub('E', 's') .. 'yoggle'
-- Debug output
return string.format(
"Raw input:\n<pre>%s</pre>\n\nProcessed input:\n<pre>%s</pre>",
raw_input,
processed_input
)
end
return p