lib/moxml/doctype.rb



# frozen_string_literal: true

module Moxml
  class Doctype < Node
    def doctype?
      true
    end
  end
end