Change soft-fail to use the config, rather than env
[rbx.git] / lib / rexml / dtd / attlistdecl.rb
blobe176bb0749ea69f238c468e98749b070fb1705c1
1 require "rexml/child"
2 module REXML
3         module DTD
4                 class AttlistDecl < Child
5                         START = "<!ATTLIST"
6                         START_RE = /^\s*#{START}/um
7                         PATTERN_RE = /\s*(#{START}.*?>)/um
8                 end
9         end
10 end