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
Revision as of 16:12, 11 December 2024 by Skkias (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
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