How Do I Output HTML code in FCKeditor Style?

This website contains links to software which is either no longer maintained or will be supported only until the end of 2019 (CKFinder 2). For the latest documentation about current CKSource projects, including software like CKEditor 4/CKEditor 5, CKFinder 3, Cloud Services, Letters, Accessibility Checker, please visit the new documentation website.

If you look for an information about very old versions of CKEditor, FCKeditor and CKFinder check also the CKEditor forum, which was closed in 2015. If not, please head to StackOverflow for support.

(Undo revision 6360 by J.swiderski (Talk))
 
Line 23: Line 23:
 
<p>
 
<p>
 
Some text</p>
 
Some text</p>
 +
 +
<p>
 +
First line<br />
 +
Second line<br />
 +
Third line</p>
  
 
<table border="1" cellpadding="1" cellspacing="1" height="100" width="200">
 
<table border="1" cellpadding="1" cellspacing="1" height="100" width="200">
Line 58: Line 63:
 
ev.editor.dataProcessor.writer.setRules( e, {
 
ev.editor.dataProcessor.writer.setRules( e, {
 
// Indicates that an element creates indentation on line breaks that it contains.
 
// Indicates that an element creates indentation on line breaks that it contains.
indent : true,
+
indent : false,
 
// Inserts a line break before a tag.
 
// Inserts a line break before a tag.
 
breakBeforeOpen : true,
 
breakBeforeOpen : true,
Line 67: Line 72:
 
// Inserts a line break after the closing tag.
 
// Inserts a line break after the closing tag.
 
breakAfterClose : true
 
breakAfterClose : true
 +
});
 +
}
 +
 +
for ( var e in CKEDITOR.tools.extend( {}, dtd.$list, dtd.$listItem, dtd.$tableContent ) )
 +
{
 +
ev.editor.dataProcessor.writer.setRules( e, {
 +
indent : true,
 
});
 
});
 
}
 
}
  
 
// You can also apply the rules to a single element.
 
// You can also apply the rules to a single element.
ev.editor.dataProcessor.writer.setRules( 'br',
+
ev.editor.dataProcessor.writer.setRules( 'table',
{
+
{
breakAfterOpen : true
+
indent : true
 
});
 
});
 +
 +
ev.editor.dataProcessor.writer.setRules( 'form',
 +
{
 +
indent : true
 +
});
 
});
 
});
 
</source>
 
</source>
  
 
More information about HTML source formatting can also be found in the [[CKEditor_3.x/Developers_Guide/Output_Formatting|Output Formatting]] article from the [[CKEditor_3.x/Developers_Guide|Developer's Guide]].
 
More information about HTML source formatting can also be found in the [[CKEditor_3.x/Developers_Guide/Output_Formatting|Output Formatting]] article from the [[CKEditor_3.x/Developers_Guide|Developer's Guide]].

Latest revision as of 10:14, 6 June 2011

In FCKeditor 2.x, the predecessor of CKEditor 3.x, HTML source was formatted in the following way, using spaces and placing the element tags and contents in one line:

<p>Some text</p>

<table width="200" cellspacing="1" cellpadding="1" border="1" height="100">
    <tbody>
        <tr>
            <td>&nbsp;cell_1.1</td>
            <td>&nbsp;cell_1.2</td>
        </tr> 
    </tbody>
</table>

<ul>
    <li>item_1</li>
    <li>item_2</li>
</ul>

CKEditor 3.x formats HTML source code in the following way, using tabs and indenting element contents:

<p>
	Some text</p>

<p>
	First line<br />
	Second line<br />
	Third line</p>

<table border="1" cellpadding="1" cellspacing="1" height="100" width="200">
	<tbody>
		<tr>
			<td>
				&nbsp;cell_1.1</td>
			<td>
				&nbsp;cell_1.2</td>
		</tr>
	</tbody>
</table>

<ul>
	<li>
		item_1</li>
	<li>
		item_2</li>
</ul>

If you would like to go back to FCKeditor formatting, you can achieve it by adding the following code to your config.js file:

CKEDITOR.on( 'instanceReady', function( ev )
{
	var writer = ev.editor.dataProcessor.writer; 
	// The character sequence to use for every indentation step.
	writer.indentationChars = '    ';

	var dtd = CKEDITOR.dtd;
	// Elements taken as an example are: block-level elements (div or p), list items (li, dd), and table elements (td, tbody).
	for ( var e in CKEDITOR.tools.extend( {}, dtd.$block, dtd.$listItem, dtd.$tableContent ) )
	{
		ev.editor.dataProcessor.writer.setRules( e, {
			// Indicates that an element creates indentation on line breaks that it contains.
			indent : false,
			// Inserts a line break before a tag.
			breakBeforeOpen : true,
			// Inserts a line break after a tag.
			breakAfterOpen : false,
			// Inserts a line break before the closing tag.
			breakBeforeClose : false,
			// Inserts a line break after the closing tag.
			breakAfterClose : true
		});
	}
	
	for ( var e in CKEDITOR.tools.extend( {}, dtd.$list, dtd.$listItem, dtd.$tableContent ) )
	{
		ev.editor.dataProcessor.writer.setRules( e, {			
			indent : true,
		});
	}

	// You can also apply the rules to a single element.
	ev.editor.dataProcessor.writer.setRules( 'table',
	{ 		
		indent : true
	});	
	
	ev.editor.dataProcessor.writer.setRules( 'form',
	{ 		
		indent : true
	});		
});

More information about HTML source formatting can also be found in the Output Formatting article from the Developer's Guide.

This page was last edited on 6 June 2011, at 10:14.