X-Git-Url: https://scm.cri.ensmp.fr/git/ckeditor.git/blobdiff_plain/871bad8291b6dbc29d489d95d185458caab25158..14d450d78a2d67ec1decd64c928151851961dd36:/_samples/output_xhtml.html diff --git a/_samples/output_xhtml.html b/_samples/output_xhtml.html deleted file mode 100644 index 2fcd5b2..0000000 --- a/_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.
-	});
-
- - -
- -
-
-

- - - -

-

- -

-
- - -