summaryrefslogtreecommitdiff
path: root/lib/rexml/dtd/attlistdecl.rb
blob: 25955ee274960fbe3a362d6e5ec919c52aa11472 (plain)
1
2
3
4
5
6
7
8
9
10
require "rexml/child"
module REXML
  module DTD
    class AttlistDecl < Child
      START = "<!ATTLIST"
      START_RE = /^\s*#{START}/um
      PATTERN_RE = /\s*(#{START}.*?>)/um
    end
  end
end