class Markaby::XmlTagset

Additional tags found in XHTML 1.0 Frameset

Public Class Methods

default_options() click to toggle source
Calls superclass method Markaby::Tagset::default_options
# File lib/markaby/xml_tagset.rb, line 6
def default_options
  super.merge({
    output_xml_instruction: true,
    output_meta_tag: "xhtml",
    root_attributes: {
      xmlns: "http://www.w3.org/1999/xhtml",
      "xml:lang": "en",
      lang: "en"
    }
  })
end