Sha256: 227fe3cbc26ab98b390befaabdf5c1341021bb6b6c621a8defe768ac73918e65

Contents?: true

Size: 470 Bytes

Versions: 8

Compression:

Stored size: 470 Bytes

Contents

# frozen_string_literal: true

module HS
  class Table < HS::Element
    def tag_name
      'table'
    end
  end

  class Thead < HS::Element
    def tag_name
      'thead'
    end
  end

  class Tbody < HS::Element
    def tag_name
      'tbody'
    end
  end

  class Tr < HS::Element
    def tag_name
      'tr'
    end
  end

  class Th < HS::Element
    def tag_name
      'th'
    end
  end

  class Td < HS::Element
    def tag_name
      'td'
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
hs-cli-0.3.3 lib/hs/elements/table.rb
hs-cli-0.3.2 lib/hs/elements/table.rb
hs-cli-0.3.1 lib/hs/elements/table.rb
hs-cli-0.3.0 lib/hs/elements/table.rb
hs-cli-0.2.2 lib/hs/elements/table.rb
hs-cli-0.2.1 lib/hs/elements/table.rb
hs-cli-0.2.0 lib/hs/elements/table.rb
hs-cli-0.1.2 lib/hs/elements/table.rb