Sha256: 819918b92ce7a55569b5aa25a367fcf2bd3de7430911b7b02b6fc146ae6f6785
Contents?: true
Size: 526 Bytes
Versions: 53
Compression:
Stored size: 526 Bytes
Contents
module REXML # Defines a number of tokens used for parsing XML. Not for general # consumption. module XMLTokens NCNAME_STR= '[\w:][\-\w.]*' NAME_STR= "(?:#{NCNAME_STR}:)?#{NCNAME_STR}" NAMECHAR = '[\-\w\.:]' NAME = "([\\w:]#{NAMECHAR}*)" NMTOKEN = "(?:#{NAMECHAR})+" NMTOKENS = "#{NMTOKEN}(\\s+#{NMTOKEN})*" REFERENCE = "(?:&#{NAME};|&#\\d+;|&#x[0-9a-fA-F]+;)" #REFERENCE = "(?:#{ENTITYREF}|#{CHARREF})" #ENTITYREF = "&#{NAME};" #CHARREF = "&#\\d+;|&#x[0-9a-fA-F]+;" end end
Version data entries
53 entries across 53 versions & 3 rubygems