Why are your html tags in uppercase?
It would be really nice if it followed the XHTML standard and used lowercase tags.
<table>
instead of
<TABLE>
It would be really nice if it followed the XHTML standard and used lowercase tags.
<table>
instead of
<TABLE>
RE: XHTML
Best regards,
FredCK
Frederico Knabben
CKEditor Project Lead and CKSource Owner
--
Follow us on: Twitter | Facebook | Google+ | LinkedIn
RE: XHTML
FredCK
Frederico Knabben
CKEditor Project Lead and CKSource Owner
--
Follow us on: Twitter | Facebook | Google+ | LinkedIn
RE: XHTML
This thing is absolutely wonderful.
I've looked at a half-dozen editors, but out of the box this thing has the best quality code I've seen yet!
Some of the XML editors that are out there are pretty cool as well, such as the Bitflux Editor.
Jonathan
RE: XHTML
RE: XHTML
I would think its pretty straightforward.
Please email ba@ nOSPAM accessglobe.com
RE: XHTML
I found small workaround:
Before you store UGLY HTML produced by MS DHTML just convert all bad-looking tags
example:
$nice_xhtml = str_replace('<BR>','<br />',$bad_html);
I hope it helps. Jaaaco.
RE: XHTML
And easier and better way... just set config.EnableXHTML = true on the fck_config.js file.
(Version 1.5 is recommended... there is a bug fix regarding the XHTML support)
Best regards,
FredCK
Frederico Knabben
CKEditor Project Lead and CKSource Owner
--
Follow us on: Twitter | Facebook | Google+ | LinkedIn
RE: XHTML
I have noticed that the editor now cleans code pasted from MS Office applications, the function that does that could be extended to enforce XHTML compliance.