Invalid XML Chars in feed output

Issue #1918 open
Daniel Zoller created an issue

The RSS Feeds we are offering are returning invalid XML Chars.

use XmlUtils#removeInvalidXmlChars to remove them

Comments (13)

  1. Former user Account Deleted

    Would you state the issue more precisely, please?

    Considering a publication

    @article{invalidXML,
        title = {x > 5},
        author = {Alice & Bob},
        year = 2000
    }
    

    invalid XML characters will be escaped correctly by RSS feed output:

    <title>x &gt; 5</title>
    <content:encoded>&lt;span class=&#034;authorEditorList&#034;&gt;&lt;a href=&#034;/author/Bob&#034;&gt;Alice &amp;amp; Bob&lt;/a&gt;. &lt;/span&gt;  (&lt;em&gt;2000&lt;/em&gt;)</content:encoded>
    

    (see http://www.biblicious.org/publrss/user/cut).

  2. Former user Account Deleted

    Indeed it should. However, it would have been nice to have an acknowledgment of success ;-)

  3. Log in to comment