オプション

オプション -- すべてのXML_Beautifierオプションの一覧

オプションの導入

Options let you influence the beautifiying process. They are passed to the renderer and thus, you have to check, whether the renderer you are using supports the options you want to use.

As there currently is only one renderer (Plain) available, you should not worry about this too much.

オプションは、XML_Beautifierのコンストラクタ への連想配列として渡すことが出来ます。 You may also use setOption(), or setOptions() to set one or more options after the instance of XML_Beautifier has been created.

すべての有効なオプション

ここに、 XML_Beautifierでサポートされたすべてのオプションの一覧があります。

表 68-1XML_Beautifierオプション

オプション可能な値デフォルト説明
removeLineBreaksTRUE or FALSETRUESets, whether linebreaks should be stripped from cdata sections
indentany string" " (4つの半角空白)The string passed to this option will be used to indent the tags in one level.
linebreakany string"\n"The string passed to this option will be used for linebreaks You should use "\n" or "\r\n".
caseFoldingTRUEFALSEFALSEDisable or enable case folding for tags and attributes
caseFoldingTo"uppercase"か"lowercase""uppercase"Can be used, if caseFolding is set to TRUE to define whether tags and attributes should be converted to upper- or lowercase
normalizeCommentsFALSE or TRUEFALSEIf set to true, all adjacent whitespaces in an XML comment will be converted to one space. This will convert comments with more than one line to a comment with one line.
maxCommentLineinteger-1 コメント行の最大長です。 コメントがこの限度を越えれば、それは自動的にラッピングされるでしょう。 もし-1にセットされれば、行長は無制限になります。
multilineTagsTRUEFALSEFALSEIf set to true, a linebreak will be added inside the tags after each attribute and attributes will be indeted.

オプション例

次の例は、XML_Beautifierのためにオプションを設定する方法の手引きです。

Options example setting options at a later point

インスタンスが既に作成されている場合、 次の例はXML_Beautifierのオプションを設定する方法手引きです。