# frozen_string_literal: true module El # represent the th tag class Th < Element def initialize super('th', closing_tag: true) end end end