indexing description: "Objects that ..." author: "" date: "$Date$" revision: "$Revision$" deferred class INLINE_ELEMENT inherit ANY undefine out end feature -- body link_to(link:STRING; text:STRING):STRING is -- return a link do Result := ""+text+"" end emphasize(s:STRING):STRING is -- surround a string with do Result := ""+s+"" end image(src:STRING; alt:STRING):STRING is -- return a tag with src do Result := "%""+alt+"%"" end strong(s:STRING):STRING is -- surround a string with do Result := ""+s+"" end end