Method: Html2rss::RssBuilder::Stylesheet#to_xml

Defined in:
lib/html2rss/rss_builder/stylesheet.rb

#to_xmlString

Returns the XML representation of the stylesheet.

Returns:

  • (String)

    the XML representation of the stylesheet


52
53
54
55
56
# File 'lib/html2rss/rss_builder/stylesheet.rb', line 52

def to_xml
  <<~XML
    <?xml-stylesheet href="#{href}" type="#{type}" media="#{media}"?>
  XML
end