X-Git-Url: https://scm.cri.ensmp.fr/git/ckeditor.git/blobdiff_plain/e11f66eb655db8339a2d9b197b89f6c3b26099e1..579f65bc95a773bc6f8da75f6849ea49f365368b:/skins/ckeditor/_samples/output_xhtml.html diff --git a/skins/ckeditor/_samples/output_xhtml.html b/skins/ckeditor/_samples/output_xhtml.html deleted file mode 100644 index 2fcd5b2..0000000 --- a/skins/ckeditor/_samples/output_xhtml.html +++ /dev/null @@ -1,177 +0,0 @@ - - - - - XHTML Compliant Output — CKEditor Sample - - - - - - -

- CKEditor Sample — Producing XHTML Compliant Output -

-
-

- 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/output_xhtml.css',
-
-		coreStyles_bold	: { element : 'span', attributes : {'class': 'Bold'} },
-		coreStyles_italic : { element : 'span', attributes : {'class': 'Italic'} },
-
-		// More definitions follow.
-	});
-
- - -
- -
-
-

- - - -

-

- -

-
- - -