View source for Module:example
Jump to navigation
Jump to search
You do not have permission to edit this page, for the following reason:
You can view and copy the source of this page.
local export = {}
local m_formatting = require("Module:formatting")
local m_languages = require("Module:languages")
function export.show(frame)
local args = frame:getParent().args
local language = m_languages.get_by_code(args[1])
if not args[2] then error("a sentence must be provided to {{example}}") end
local translation = args[3] and ('<dl><dd>' .. args[3] .. '</dd></dl>') or ""
local cats = (args["nocats"] and args["nocats"] ~= "") and "" or ("[[Category:" .. language.name .. " terms with usage examples]]")
return '<div class="h-example">' .. m_formatting.wrap_face(args[2], language, "example") .. translation .. '</div>' .. cats
end
return export
000
1:0
Templates used on this page:
Return to Module:example.