Module:form of: Difference between revisions

no edit summary
No edit summary
No edit summary
Line 129: Line 129:
local terminfo_classes = data.text_classes or "form-of-definition-link"
local terminfo_classes = data.text_classes or "form-of-definition-link"
local parts = {}
local parts = {}
table.insert(parts, "<span class='" .. text_classes .. "'>")
table.insert(parts, "<span class='" .. text_classes .. "'  style='font-weight: bold;'>")
table.insert(parts, data.text)
table.insert(parts, data.text)
if data.text ~= "" and data.terminfo then
if data.text ~= "" and data.terminfo then
Line 848: Line 848:
local text_classes = data.text_classes or "form-of-definition"
local text_classes = data.text_classes or "form-of-definition"
return link .."\n## <span class='" .. text_classes .. "' style='font-weight: bold;'>" ..
return link .."\n## <span class='" .. text_classes .. "' style='font-weight: bold;'>" ..
table.concat(inflections, "</span>\n## <span class='" .. text_classes .. "'>") .. "</span>"
table.concat(inflections, "</span>\n## <span class='" .. text_classes .. "' style='font-weight: bold;'>") .. "</span>"
end
end
end
end