Module:DropsLineTest: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
local p = {} | local p = {} | ||
-- Define a function to generate output numbers | -- Define a function to generate output numbers based on the input | ||
function p.generateOutput(frame) | function p.generateOutput(frame) | ||
local inputNumber = tonumber(frame.args[1]) or 0 | local inputNumber = tonumber(frame.args[1]) or 0 | ||
local output = {} | |||
-- | -- Add the input number | ||
table.insert(output, "|1/" .. inputNumber) | |||
-- | -- Calculate and add percentages with pipe symbol | ||
output = output .. "| bgcolor=\"#FFCCCC\" | 1/" .. (inputNumber * 0.85) -- 10% | |||
table.insert(output, "|1/" .. inputNumber * 0.75) -- 20% | |||
table.insert(output, "|1/" .. inputNumber * 0.70) -- 30% | |||
table.insert(output, "|1/" .. inputNumber * 0.65) -- 40% | |||
table.insert(output, "|1/" .. inputNumber * 0.60) -- 50% | |||
return table.concat(output, '\n') | |||
end | end | ||
return p | return p |
Revision as of 17:30, 5 May 2024
Documentation for this module may be created at Module:DropsLineTest/doc
local p = {}
-- Define a function to generate output numbers based on the input
function p.generateOutput(frame)
local inputNumber = tonumber(frame.args[1]) or 0
local output = {}
-- Add the input number
table.insert(output, "|1/" .. inputNumber)
-- Calculate and add percentages with pipe symbol
output = output .. "| bgcolor=\"#FFCCCC\" | 1/" .. (inputNumber * 0.85) -- 10%
table.insert(output, "|1/" .. inputNumber * 0.75) -- 20%
table.insert(output, "|1/" .. inputNumber * 0.70) -- 30%
table.insert(output, "|1/" .. inputNumber * 0.65) -- 40%
table.insert(output, "|1/" .. inputNumber * 0.60) -- 50%
return table.concat(output, '\n')
end
return p