method

to_s

v1_8_7_330 - Show latest stable - Class: RSS::XMLStyleSheet
to_s()
public

No documentation available.

# File lib/rss/xml-stylesheet.rb, line 55
    def to_s
      rv = ""
      if @href
        rv << %Q[<?xml-stylesheet]
        ATTRIBUTES.each do |name|
          if __send__(name)
            rv << %Q[ #{name}="#{h __send__(name)}"]
          end
        end
        rv << %Q[?>]
      end
      rv
    end