| Name | Size | Mode | Actions |
|---|---|---|---|
| assets/ | - | 0755 | rm |
| plugins/ | - | 0755 | rm |
| ajax.html | 2426 | 0644 | editdlrm |
| api.html | 6779 | 0644 | editdlrm |
| appendto.html | 2026 | 0644 | editdlrm |
| datafiltering.html | 34324 | 0644 | editdlrm |
| divreplace.html | 4352 | 0644 | editdlrm |
| index.html | 5531 | 0644 | editdlrm |
| inlineall.html | 9688 | 0644 | editdlrm |
| inlinebycode.html | 5873 | 0644 | editdlrm |
| inlinetextarea.html | 4614 | 0644 | editdlrm |
| jquery.html | 7228 | 0644 | editdlrm |
| readonly.html | 2615 | 0644 | editdlrm |
| replacebyclass.html | 6777 | 0644 | editdlrm |
| replacebycode.html | 6661 | 0644 | editdlrm |
| sample.css | 5030 | 0644 | editdlrm |
| sample.js | 1625 | 0644 | editdlrm |
| sample_posteddata.php | 815 | 0644 | editdlrm |
| tabindex.html | 2131 | 0644 | editdlrm |
| uicolor.html | 2338 | 0644 | editdlrm |
| uilanguages.html | 4175 | 0644 | editdlrm |
| xhtmlstyle.html | 6606 | 0644 | editdlrm |
/home/desid573/book.familycab.com.au/pdd/app/webroot/admin/plugins/ckeditor/samples/xhtmlstyle.html (6606B)
This sample shows how to configure CKEditor to output valid
XHTML 1.1 code.
Deprecated elements (<font>, <u>) or attributes
(size, face) will be replaced with XHTML compliant code.
To add a CKEditor instance outputting valid XHTML code, load the editor using a standard JavaScript call and define CKEditor features to use the XHTML compliant elements and styles.
A snippet of the configuration code can be seen below; check the source of this page for full definition:
CKEDITOR.replace( 'textarea_id', {
contentsCss: 'assets/outputxhtml.css',
coreStyles_bold: {
element: 'span',
attributes: { 'class': 'Bold' }
},
coreStyles_italic: {
element: 'span',
attributes: { 'class': 'Italic' }
},
...
});