Module:Lang: Difference between revisions

Jump to navigation Jump to search
Content added Content deleted
No edit summary
No edit summary
Line 251: Line 251:
table.insert (span, '>'); -- close the opening span tag
table.insert (span, '>'); -- close the opening span tag
if 'yes' == italic then
if 'yes' == italic then
table.insert (span, table.concat ({"''", text, "''"})); -- text with italic markup
table.insert (span, table.concat ({"<i>", text, "</i>"})); -- text with italic markup
else
else
table.insert (span, text); -- DEFAULT: text is not italicized
table.insert (span, text); -- DEFAULT: text is not italicized