module Pricecut module Elements class Em < Element def output! p "_"; yield_children; p "_" end end # tag is the same as class I < Em; end end end