# File rxml/working/html_transformer.rb, line 56 def textarea(doc, txt="", height=nil, width=nil, attr=nil, id=nil) doc << "\n<textarea #{attr}" doc << " row=\"" << height << "\"" if height doc << " cols=\"" << width << "\"" if width doc << ' ' << "name=\"" << id << "\">" << txt << '</textarea>' end