PATH: //opt/alt/ruby27/share/ruby/rexml/dtd
FILE_BARU
CREATE
FOLDER_BARU
MKDIR
UPLOAD_FILE
GO
[ .. KEMBALI ]
📄 attlistdecl.rb
↓
X
📄 dtd.rb
↓
X
📄 elementdecl.rb
↓
X
📄 entitydecl.rb
↓
X
📄 notationdecl.rb
↓
X
SAVING...
BERHASIL DIUBAH!
EDITING: elementdecl.rb
# frozen_string_literal: false require_relative "../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
SIMPAN PERUBAHAN