Sha256: 708e66f6336d8abc346e7bd3a23fafd00d1aea1c5dee543931789318f7ff4d27

Contents?: true

Size: 441 Bytes

Versions: 5

Compression:

Stored size: 441 Bytes

Contents

require "markaby/tagset"
module Markaby
  # Additional tags found in XHTML 1.0 Frameset
  class XmlTagset < Tagset
    class << self
      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
    end
  end
end

Version data entries

5 entries across 5 versions & 2 rubygems

Version Path
markaby-0.9.4 lib/markaby/xml_tagset.rb
markaby-0.9.3 lib/markaby/xml_tagset.rb
markaby-0.9.2 lib/markaby/xml_tagset.rb
markaby-0.9.1 lib/markaby/xml_tagset.rb
stimul8-0.1.0 lib/markaby/lib/markaby/xml_tagset.rb