private Method

XmlMarkup._special(open, close, data=nil, attrs=nil, order=[])

Insert special instruction.

Source Code

# File builder/xmlmarkup.rb, line 275
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
Comments

Have your say
Please use Textile formatting (click here for a cheat sheet). Use <code/> and <pre/> for code samples.
Click here to login with OpenID to to post comments.