0

HTMLページにXMLファイルを出力したい。私はノコギリを次のように使用しています:

Nokogiri::XML::DocumentFragment.parse("<note><to>Tove</to><from>Jani</from><heading>Reminder</heading><body>Don't forget me this weekend!</body></note>").to_xml(:indent => 2)

しかし、私のHTMLページでは次のようになりました:

<note>
                    <to>Tove</to>
                    <from>Jani</from>
                    <heading>Reminder</heading>
                    <body>Don't forget me this weekend!</body>
                  </note>

それ以外の

    <note>
      <to>Tove</to>
      <from>Jani</from>
      <heading>Reminder</heading>
      <body>Don't forget me this weekend!</body>
    </note>

padrino エスケープ関数 (html_escape) で出力します。

コンソールではすべてが正しく出力されるため、その関数がその問題を生成しているようです。

その問題を手伝ってくれませんか?いくつかの答えを見つけようとしましたが、何も見つかりませんでした。

4

1 に答える 1