No edit summary |
No edit summary |
||
| Line 17: | Line 17: | ||
--local randomIndex = math.random(table.getn(textArray)) | --local randomIndex = math.random(table.getn(textArray)) | ||
--return textArray[randomIndex] | --return textArray[randomIndex] | ||
return | return p.pp(allText) | ||
end | end | ||
return p | return p | ||
Revision as of 21:09, 5 December 2024
Template:RandomText is used like this:
{{RandomText <-- Template Name
|option 1 <-- You need to use a | before the first option
option 2 <-- Options are separated by new line
option n <-- There are no limit of options
}} <-- Don't forget to close the template
inspect = require("Module:InspectLua")
local p = {}
function p.pp(text)
return mw.getCurrentFrame():preprocess(text)
end
function p.randomizeText (frame)
local args = frame:getParent().args
-- local textArray = {}
local allText = frame.args[1]
-- for word in string.gmatch(allText, '([^;]+)') do
-- table.insert(textArray, word)
-- end
-- math.randomseed(os.time())
--local randomIndex = math.random(table.getn(textArray))
--return textArray[randomIndex]
return p.pp(allText)
end
return p