Ruby 2.3.0 リファレンスマニュアル > ライブラリ一覧 > rexml/documentライブラリ > REXML::Formatters::Transitiveクラス
クラスの継承リスト: REXML::Formatters::Transitive < REXML::Formatters::Default < Object < Kernel < BasicObject
XMLドキュメントをテキストの内容を変えずに 多少の整形を加えて出力するクラスです。
これが有用な場合はあまりないでしょう。 整形されていない XML を整形したいが、 テキストの空白は改行は変えたくない場合には役にたつかもしれません。 ただ、ほとんどの場合は奇妙な出力結果になるでしょう。
require 'rexml/document' require 'rexml/formatters/transitive' doc = REXML::Document.new <<EOS <root><children> <grandchildren foo='bar' /> </children></root> EOS transitive_formatter = REXML::Formatters::Transitive.new output = StringIO.new transitive_formatter.write(doc, output) output.string # => "<root\n><children\n >\n<grandchildren foo='bar'\n />\n</children\n ></root\n>\n" print output.string # >> <root # >> ><children # >> > # >> <grandchildren foo='bar' # >> /> # >> </children # >> ></root # >> > output = StringIO.new transitive_formatter.write(REXML::XPath.first(doc, "/root/children"), output) output.string # => "<children\n>\n<grandchildren foo='bar'\n />\n</children\n>"
new(indentation=2, ie_hack=false) -> REXML::Formatter::Transitive
[permalink][rdoc]フォーマッタオブジェクトを生成して返します。
このフォーマッタによる出力は基本的にテキストの空白や改行を変化させないと いう制約のもと、出力を整形します。
indentation でインデント幅を指定できます。
ie_hack に真を渡すと、空のタグを閉じる前で空白を挿入します。 これは特定のバージョンのIEのXMLパーサのバグを避けるための機能です。