| Name | Size | Mode | Actions |
|---|---|---|---|
| assets/ | - | 0755 | rm |
| dialog/ | - | 0755 | rm |
| enterkey/ | - | 0755 | rm |
| htmlwriter/ | - | 0755 | rm |
| magicline/ | - | 0755 | rm |
| toolbar/ | - | 0755 | rm |
| wysiwygarea/ | - | 0755 | rm |
| ajax.html | 2645 | 0644 | editdlrm |
| api.html | 7122 | 0644 | editdlrm |
| appendto.html | 2257 | 0644 | editdlrm |
| datafiltering.html | 47142 | 0644 | editdlrm |
| divreplace.html | 4550 | 0644 | editdlrm |
| index.html | 5673 | 0644 | editdlrm |
| inlineall.html | 9909 | 0644 | editdlrm |
| inlinebycode.html | 6090 | 0644 | editdlrm |
| inlinetextarea.html | 4831 | 0644 | editdlrm |
| jquery.html | 7448 | 0644 | editdlrm |
| readonly.html | 2867 | 0644 | editdlrm |
| replacebyclass.html | 6975 | 0644 | editdlrm |
| replacebycode.html | 6879 | 0644 | editdlrm |
| sample.css | 4757 | 0644 | editdlrm |
| sample.js | 1645 | 0644 | editdlrm |
| sample_posteddata.php | 793 | 0644 | editdlrm |
| tabindex.html | 2350 | 0644 | editdlrm |
| uicolor.html | 2557 | 0644 | editdlrm |
| uilanguages.html | 4430 | 0644 | editdlrm |
| xhtmlstyle.html | 6818 | 0644 | editdlrm |
/var/www/vhosts/bsbdokum.com.tr/httpdocs/admin/assets/ckeditor/samples/old/xhtmlstyle.html (6818B)
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' }
},
...
});