Method deprecated or moved
This method is deprecated or moved on the latest stable version.
The last existing version (v1.0.0) is shown here.
_start_tag(sym, attrs, end_too=false)
private
Start an XML tag. If end_too is true, then the start tag is also
the end tag (e.g. <br/>
# File actionpack/lib/action_view/vendor/builder/xmlmarkup.rb, line 275
def _start_tag(sym, attrs, end_too=false)
@target << "<#{sym}"
_insert_attributes(attrs)
@target << "/" if end_too
@target << ">"
end