Hi,
my website is xhtml 1.0 strict compliant, but the editor produces invalid xhtml.
For example:
I type a text like "text" in the editor window. Afterwards I select the text and click auf "center". The produced xhtml code:
<p align="center">text</p>
But in xhtml 1.0 strict is the attribute align not allowed. The correct xhtml 1.0 strict code:
<p style="text-align: center">text</p>
How can I solve this problem?
Thomas
my website is xhtml 1.0 strict compliant, but the editor produces invalid xhtml.
For example:
I type a text like "text" in the editor window. Afterwards I select the text and click auf "center". The produced xhtml code:
<p align="center">text</p>
But in xhtml 1.0 strict is the attribute align not allowed. The correct xhtml 1.0 strict code:
<p style="text-align: center">text</p>
How can I solve this problem?
Thomas