Dieser Artikel wurde automatisch erzeugt und wird auch automatisch wieder ausgelesen. Es ist deshalb wichtig, dass nur der Inhalt der gelben Code-Boxen verändert wird.

Es handelt sich dabei um eine Fehlermeldung des Feed-Validators, die eventuell noch ins Deutsche übersetzt werden muss. Wenn du kannst, hilf mit!

Status dieser Fehlermeldung: Noch nicht übersetzt

Meldung


<p><code>foo</code> should not contain HTML unless declared in the type attribute</p>

Erklärung


<p>This element contains escaped HTML, but it has declared itself as "text".</p>

Lösung


<p>Use the <code>type</code> attribute to declare that this is HTML.  For example, this is an invalid title in an Atom feed:</p>

<blockquote><p><code>&lt;title&gt;My &amp;lt;b&amp;gt;Bold&amp;lt;/b&amp;gt; Title&lt;/title&gt;</code></p></blockquote>

<p>To make it valid, add the following attribute:</p>

<blockquote><p><code>&lt;title <strong>type="html"</strong>&gt;My &amp;lt;b&amp;gt;Bold&amp;lt;/b&amp;gt; Title&lt;/title&gt;</code></p></blockquote>