Sha256: e7124f16c927cd17ba87682e5686ea97d071b4ce8b7b1993e2d163eb4beff74d

Contents?: true

Size: 417 Bytes

Versions: 28

Compression:

Stored size: 417 Bytes

Contents

require 'fortitude/doctypes'
require 'fortitude/doctypes/html4'

module Fortitude
  module Doctypes
    class Html4Strict < Html4
      def initialize
        super(:html4_strict, 'HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"')
      end

      class << self
        def delegate_tag_stores
          [ Fortitude::Doctypes::Html4TagsStrict ]
        end
      end
    end
  end
end

Version data entries

28 entries across 28 versions & 1 rubygems

Version Path
fortitude-0.0.6-java lib/fortitude/doctypes/html4_strict.rb
fortitude-0.0.6 lib/fortitude/doctypes/html4_strict.rb
fortitude-0.0.5-java lib/fortitude/doctypes/html4_strict.rb
fortitude-0.0.5 lib/fortitude/doctypes/html4_strict.rb
fortitude-0.0.4-java lib/fortitude/doctypes/html4_strict.rb
fortitude-0.0.4 lib/fortitude/doctypes/html4_strict.rb
fortitude-0.0.3 lib/fortitude/doctypes/html4_strict.rb
fortitude-0.0.2 lib/fortitude/doctypes/html4_strict.rb