On Wed, May 26, 2010 at 3:23 AM, Stefan Sturm <[email protected]> wrote: > Hello, > >> OK, the first 2 are being found because of the 'ö' entity in the title >> attribute. > > this is the html entity code for a german umlaut( > http://en.wikipedia.org/wiki/Umlaut_(diacritic)#HTML ). > >> This throws the following error: Entity 'ouml' not defined in .... > > does this mean, that I can't find feeds containing a german umlaut? > > Greetings, > Stefan Sturm
Feeds are *XML* documents, and generally most named *HTML* entities are not valid in XML documents. The feed should be published in a character set such as UTF-8 that supports characters like ö without having to convert them to HTML entities. If not, it should convert those characters to numeric entities rather than named entities. (ö or ö instead of ö). Andrew
