Top Level Namespace
Defined Under Namespace
Modules: Kwaff
Instance Method Summary collapse
-
#yaml ⇒ Object
represents XML Dcoument Type.
Instance Method Details
#yaml ⇒ Object
represents XML Dcoument Type
document_type ::= ‘<!DOCUTYPE’ element_name external_subset [ internal_subset ] ‘>’ external_subset ::= ‘PUBLIC’ pubic_id system_id | ‘SYSTEM’ system_id public_id ::= ‘“’ string ‘”’ sytem_id ::= ‘“’ uri ‘”’
XML Specification:
doctypedecl ::= '<!DOCTYPE' S Name (S ExternalID)? S? ('[' intSubset ']' S?)? '>'
ExternalID ::= 'SYSTEM' S SystemLiteral | 'PUBLIC' S PubidLiteral S SystemLiteral
$Id: doctype.rb 11 2005-06-09 12:32:33Z kwatch $ $Release: 1.0.0 $ copyright© 2005 kuwata-lab.com all rights reserved
18 |
# File 'lib/kwaff/doctype.rb', line 18 require 'yaml' |