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> claims to be inline, but may contain HTML.</p>

Erklärung


<p>This element appears to contain escaped HTML, but it has declared itself as "xhtml".</p>

Lösung


<p>Unless you intend for the markup to show, unescape the content or use the <code>type</code> attribute to declare that this is HTML.</p>

<ul>
<li><strong>Example:</strong>: entity escaped content declared as xhtml:
<blockquote><p><code>&lt;content <b>type="xhtml"</b>&gt;<b>&lt;div xmlns="http://www.w3.org/1999/xhtml"&gt;</b>My &amp;lt;b&amp;gt;Bold&amp;lt;/b&amp;gt; Content<b>&lt;/div&gt;</b>&lt;/content&gt;</code></p></blockquote>

<p>To correct, remove the <code>xhml:div</code> and change the
<code>type</code> attribute to <code>html</code>, thus:</p>

<blockquote><p><code>&lt;content <strong>type="html"</strong>&gt;My &amp;lt;b&amp;gt;Bold&amp;lt;/b&amp;gt; Title&lt;/content&gt;</code></p></blockquote>
</li>
<li><strong>Example:</strong>: CDATA escaped content declared as xhtml:
<blockquote><p><code>&lt;content type="xhtml"&gt;&lt;div xmlns="http://www.w3.org/1999/xhtml"&gt;<b>&lt;![CDATA[</b>My &lt;b&gt;Bold&lt;/b&gt; Content<b>]]&gt;</b>&lt;/div&gt;&lt;/content&gt;</code></p></blockquote>

<p>To correct, remove the <code>CDATA</code>, thus:</p>

<blockquote><p><code>&lt;content type="xhtml"&gt;&lt;div xmlns="http://www.w3.org/1999/xhtml"&gt;My &lt;b&gt;Bold&lt;/b&gt; Content&lt;/div&gt;&lt;/content&gt;</code></p></blockquote>
</li>
</ul>