This module implements {{R:it:Treccani}}
.
local export = {}
function export.create(frame)
local params = {
= {default = mw.title.getCurrentTitle().text},
= {},
= {},
= {},
= {type = "boolean"}
}
local args = require("Module:parameters").process(frame:getParent().args, params)
local strippedTerm = mw.ustring.toNFD(args)
:gsub("", "") -- strip combining diacritical marks, U+0300-U+036F
:gsub(' ', '-')
local encodedTerm = mw.uri.encode(strippedTerm)
local sense = args or ''
if sense ~= '' then
encodedTerm = encodedTerm .. sense
end
local title = (args or args):gsub('_', ' ')
local type = args and "enciclopedia" or "vocabolario"
local link = "[https://www.treccani.it/" .. type .. "/" .. encodedTerm .. " " .. title
.. (sense and ('<sup>' .. sense .. '</sup>') or '')
.. "] " ..
"in Treccani.it – ''" .. mw.getLanguage("it"):ucfirst(type) .. " Treccani on line'', Istituto dell'Enciclopedia Italiana"
return link
end
return export