Start an XML tag. If end_too is true, then the start tag is also the end tag (e.g. <br />
Source Code
# File builder/xmlmarkup.rb, line 286 def _start_tag(sym, attrs, end_too=false) @target << "<#{sym}" _insert_attributes(attrs) @target << "/" if end_too @target << ">" end
<code/>and<pre/>for code samples.