From Seeds of the Word, the encyclopedia of the influence of the Gospel on culture
Documentation for this module may be created at Module:MD5/doc
local p = {}
local getArgs = require('Module:Arguments').getArgs
function p.main(frame)
local args = getArgs(frame)
-- let's make sure defaults are set
args.value = args.value or ""
return mw.hash.hashValue('md5',args.value)
end
return p