108件ヒット
[101-108件を表示]
(0.040秒)
別のキーワード
ライブラリ
-
rexml
/ document (108)
キーワード
-
attribute
_ of (12) -
attributes
_ of (12) - entities (12)
- entity (12)
-
external
_ id (12) - name (12)
- public (12)
- system (12)
- write (12)
検索結果
-
REXML
:: DocType # write(output , indent = 0 , transitive = false , ie _ hack = false) -> () (3014.0) -
output に DTD を出力します。
...ないでください。
@param ie_hack 無視されます。指定しないでください。
//emlist[][ruby]{
require 'rexml/document'
doctype = REXML::Document.new(<<EOS).doctype
<!DOCTYPE books [
<!ELEMENT book (comment)>
<!ELEMENT comment (#PCDATA)>
<!ATTLIST book
author CDATA #REQ......UIRED
title CDATA #REQUIRED
publisher CDATA "foobar publisher">
<!ENTITY p "foobar publisher">
<!ENTITY % q "quzz">
]>
EOS
doctype.write(STDOUT)
# =>
# <!DOCTYPE books [
# <!ELEMENT book (comment)>
# ....
//}...