summaryrefslogtreecommitdiff
path: root/ruby_1_8_5/lib/rexml/dtd/attlistdecl.rb
blob: e176bb0749ea69f238c468e98749b070fb1705c1 (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