summaryrefslogtreecommitdiff
path: root/lib/rexml/dtd/elementdecl.rb
blob: a0bf64130007b3805a65fe2bb3022ae4b0488215 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
require "rexml/child"
module REXML
  module DTD
    class ElementDecl < Child
      START = "<!ELEMENT"
      START_RE = /^\s*#{START}/um
      PATTERN_RE = /^\s*(#{START}.*?)>/um
      PATTERN_RE = /^\s*#{START}\s+((?:[:\w_][-\.\w_]*:)?[-!\*\.\w_]*)(.*?)>/
      #\s*((((["']).*?\5)|[^\/'">]*)*?)(\/)?>/um, true)

      def initialize match
        @name = match[1]
        @rest = match[2]
      end
    end
  end
end