mirror of
https://github.com/mistergibson/gxg-web-client.git
synced 2026-08-15 11:34:29 -07:00
11 lines
233 B
Ruby
11 lines
233 B
Ruby
# frozen_string_literal: false
|
|
require "deps/rexml/child"
|
|
module REXML
|
|
module DTD
|
|
class AttlistDecl < Child
|
|
START = "<!ATTLIST"
|
|
START_RE = /^\s*#{START}/um
|
|
PATTERN_RE = /\s*(#{START}.*?>)/um
|
|
end
|
|
end
|
|
end
|