Wowpedia

We have moved to Warcraft Wiki. Click here for information and the new URL.

READ MORE

Wowpedia
Advertisement

Documentation for this module may be created at Module:HotfixBlog/doc

local p = {}

local BLOG_LINK_FORMAT = "https://worldofwarcraft.com/en-us/news/%s/"
local BLOGS = mw.loadData("Module:HotfixBlogs/data")

function p.main(frame)
    return BLOG_LINK_FORMAT:format(BLOGS[frame:getParent().args.date])
end

return p
Advertisement