Documentation for this module may be created at Module:Italics/doc
local p = {}
function p.i ( frame )
local args = frame.args
local text = args[1]
text = text:gsub("Hand", "''Hand''"):gsub("Mouth", "''Mouth''"):gsub("0 lbs.", "''0 lbs.''")
return frame:preprocess( text )
end
return p