/tools/Ruby/lib/ruby/1.8/rexml/dtd/attlistdecl.rb
http://github.com/agross/netopenspace · Ruby · 10 lines · 10 code · 0 blank · 0 comment · 0 complexity · 36f722035fb28704934e1ed16a053b35 MD5 · raw file
- 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