Module:CopyEmbeddedStories
From Seven Sages of Rome
Documentation for this module may be created at Module:CopyEmbeddedStories/doc
local p = {}
-- Function to fetch EmbeddedStory templates from a given page
function p.fetchEmbeddedStories(frame)
local pageTitle = frame.args["sourcePage"]
if not pageTitle then
return "Error: No source page specified."
end
-- Get the wikitext content of the source page
local content = mw.title.new(pageTitle):getContent()
if not content then
return "Error: Source page not found or empty."
end
-- Find all EmbeddedStory templates
local templates = {}
for embeddedStory in content:gmatch("{{EmbeddedStory.-}}") do
table.insert(templates, embeddedStory)
end
-- Return templates as a single concatenated string
return table.concat(templates, "\n")
end
return p