The wiki is currently a work in progress. If you'd like to help out, please check the Community Portal and our getting started guide. Also, check out our sister project on poewiki.net.

Module:Sandbox/Skkias/TestDictionary

From Path of Exile 2 Wiki
Jump to navigation Jump to search
Module documentation[create] [purge]
local p = {}

function p.getEntry(frame)
    local term = frame.args.term or "Unknown"
    local template = "DictionaryData"
    return frame:expandTemplate{ title = template, args = { term = term } }
end

return p