This method is deprecated or moved on the latest stable version. The last existing version (v1.0.0) is shown here.
_special(open, close, data=nil, attrs=nil, order=[])
Insert special instruction.
# File actionpack/lib/action_view/vendor/builder/xmlmarkup.rb, line 264 def _special(open, close, data=nil, attrs=nil, order=[]) _indent @target << open @target << data if data _insert_attributes(attrs, order) if attrs @target << close _newline end