HTML Input is changed in an ‘stupid’ way
-
I am new to wordpress and tried to convert part of my old html side (www.matthiaspospiech.de) to wordpress.
The old side is completely selfmade html+css based. So for example a linklist looks like this:
<a name="sprache"></a>
<div class="floatitem">
<h3>Sprache</h3>
<div class="linkitem">
<ul class="linkitem">
<li><a href="https://dict.leo.org/?lang=de">https://www.leo.org/ (englisch-deutsch)</a></li>
<li><a href="https://dico.leo.org/?lp=frde">https://www.leo.org/ (franz?sisch-deutsch)</a></li>
</ul>
<a href="#top"><IMG src="/images/squareup2.png" width="11" height="11" border="0"></a></div></div>which I changed to
<a name="sprache"></a>
<h3>Sprache</h3>
<div>
<ul>
<li><a href="https://dict.leo.org/?lang=de">https://www.leo.org/ (englisch-deutsch)</a></li>
<li><a href="https://dico.leo.org/?lp=frde">https://www.leo.org/ (franz?sisch-deutsch)</a></li>
</ul>
</div>but, wordpress changed this to:
<a name="sprache"></a>
<h3><a name="sprache"></a>Sprache</h3>
<a name="sprache"></a>
<div><a name="sprache"></a>
<ul><a name="sprache"></a>
<li /><a href="https://dict.leo.org/?lang=de">https://www.leo.org/ (englisch-deutsch)</a>
<li><a href="https://dico.leo.org/?lp=frde">https://www.leo.org/ (franz?sisch-deutsch)</a></li>
</ul>
<div>and that is really stupid.
Questions: Is there a way to get around such problems. And are there special rules of ‘valid’ html for wordpress ?
Just curious.
Matthias Pospiech
- The topic ‘HTML Input is changed in an ‘stupid’ way’ is closed to new replies.