X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=_samples%2Foutput_xhtml.html;fp=_samples%2Foutput_xhtml.html;h=0000000000000000000000000000000000000000;hb=4625dba05116026713fee9008dd93306be0d1553;hp=0a87aa3f468055885b17637ce18b4e4c6f4fb217;hpb=3fe9cac293e090ea459a3ee10d78cbe9e1dd0e03;p=ckeditor.git diff --git a/_samples/output_xhtml.html b/_samples/output_xhtml.html deleted file mode 100644 index 0a87aa3..0000000 --- a/_samples/output_xhtml.html +++ /dev/null @@ -1,181 +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.
-	});
-
- - -
- -
-
-

- - - -

-

- -

-
- - -