Module:EcopediaString: Difference between revisions

From Eco - English Wiki
[checked revision][checked revision]
No edit summary
No edit summary
Tag: Manual revert
 
(One intermediate revision by the same user not shown)
(No difference)

Latest revision as of 11:14, 28 June 2024

This module provides the back end functionality of the Template:EcopediaString.

If the template is passed information will be displayed using details from the following Modules:


local p = {}

function p.main(param)
	local Utils = require('Module:Utils')
	local args = Utils.normaliseArgs(param)
	local String = ""
    local EcopediaList = mw.loadData("Module:EcopediaData")
    local String = EcopediaList[args.num]
	
	return String
end

return p