Documentation for this module may be created at Module:Soundcloud/doc
local p = {}
function p.main(frame)
local args = frame:getParent().args
local id = args[1] or 'rs3-newbie-melody'
local ret = {
'<soundcloud url="https://soundcloud.com/runescapesoundtrack/',
id,
'" height="166" auto_play="false" show_comments="false" show_user="true" />'
}
ret = table.concat(ret)
return frame:preprocess(ret)
end
return p
Community content is available under CC-BY-SA unless otherwise noted.