mirror of
https://github.com/mistergibson/gxg-web-client.git
synced 2026-08-15 03:26:00 -07:00
18 lines
455 B
Ruby
18 lines
455 B
Ruby
# frozen_string_literal: false
|
|
require "deps/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
|