Proyectos de Subversion LeadersLinked - Backend

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
16825 efrain 1
<!DOCTYPE html>
2
<!--
3
Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved.
4
For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
5
-->
6
<html lang="en">
7
<head>
8
	<meta charset="utf-8">
9
	<title>HTML Compliant Output &mdash; CKEditor Sample</title>
10
	<script src="../../../ckeditor.js"></script>
11
	<script src="../../../samples/old/sample.js"></script>
12
	<link href="../../../samples/old/sample.css" rel="stylesheet">
13
	<meta name="ckeditor-sample-required-plugins" content="sourcearea">
14
	<meta name="ckeditor-sample-name" content="Output HTML">
15
	<meta name="ckeditor-sample-group" content="Advanced Samples">
16
	<meta name="ckeditor-sample-description" content="Configuring CKEditor to produce legacy HTML 4 code.">
17
	<meta name="description" content="Try the latest sample of CKEditor 4 and learn more about customizing your WYSIWYG editor with endless possibilities.">
18
</head>
19
<body>
20
	<h1 class="samples">
21
		<a href="../../../samples/old/index.html">CKEditor Samples</a> &raquo; Producing HTML Compliant Output
22
	</h1>
23
	<div class="warning deprecated">
24
		This sample is not maintained anymore. Check out the <a href="https://ckeditor.com/docs/ckeditor4/latest/examples/index.html">brand new samples in CKEditor Examples</a>.
25
	</div>
26
	<div class="description">
27
		<p>
28
			This sample shows how to configure CKEditor to output valid
29
			<a class="samples" href="http://www.w3.org/TR/html401/">HTML 4.01</a> code.
30
			Traditional HTML elements like <code>&lt;b&gt;</code>,
31
			<code>&lt;i&gt;</code>, and <code>&lt;font&gt;</code> are used in place of
32
			<code>&lt;strong&gt;</code>, <code>&lt;em&gt;</code>, and CSS styles.
33
		</p>
34
		<p>
35
			To add a CKEditor instance outputting legacy HTML 4.01 code, load the editor using a standard
36
			JavaScript call, and define CKEditor features to use the HTML compliant elements and attributes.
37
		</p>
38
		<p>
39
			A snippet of the configuration code can be seen below; check the source of this page for
40
			full definition:
41
		</p>
42
<pre class="samples">
43
CKEDITOR.replace( '<em>textarea_id</em>', {
44
	coreStyles_bold: { element: 'b' },
45
	coreStyles_italic: { element: 'i' },
46
 
47
	fontSize_style: {
48
		element: 'font',
49
		attributes: { 'size': '#(size)' }
50
	}
51
 
52
	...
53
});</pre>
54
	</div>
55
	<form action="../../../samples/sample_posteddata.php" method="post">
56
		<p>
57
			<label for="editor1">
58
				Editor 1:
59
			</label>
60
			<textarea cols="80" id="editor1" name="editor1" rows="10">&lt;p&gt;This is some &lt;b&gt;sample text&lt;/b&gt;. You are using &lt;a href="https://ckeditor.com/"&gt;CKEditor&lt;/a&gt;.&lt;/p&gt;</textarea>
61
			<script>
62
 
63
				CKEDITOR.replace( 'editor1', {
64
					/*
65
					 * Ensure that htmlwriter plugin, which is required for this sample, is loaded.
66
					 */
67
					extraPlugins: 'htmlwriter',
68
 
69
					/*
70
					 * Style sheet for the contents
71
					 */
72
					contentsCss: 'body {color:#000; background-color#:FFF;}',
73
 
74
					/*
75
					 * Simple HTML5 doctype
76
					 */
77
					docType: '<!DOCTYPE HTML>',
78
 
79
					/*
80
					 * Allowed content rules which beside limiting allowed HTML
81
					 * will also take care of transforming styles to attributes
82
					 * (currently only for img - see transformation rules defined below).
83
					 *
84
					 * Read more: https://ckeditor.com/docs/ckeditor4/latest/guide/dev_advanced_content_filter.html
85
					 */
86
					allowedContent:
87
						'h1 h2 h3 p pre[align]; ' +
88
						'blockquote code kbd samp var del ins cite q b i u strike ul ol li hr table tbody tr td th caption; ' +
89
						'img[!src,alt,align,width,height]; font[!face]; font[!family]; font[!color]; font[!size]; font{!background-color}; a[!href]; a[!name]',
90
 
91
					/*
92
					 * Core styles.
93
					 */
94
					coreStyles_bold: { element: 'b' },
95
					coreStyles_italic: { element: 'i' },
96
					coreStyles_underline: { element: 'u' },
97
					coreStyles_strike: { element: 'strike' },
98
 
99
					/*
100
					 * Font face.
101
					 */
102
 
103
					// Define the way font elements will be applied to the document.
104
					// The "font" element will be used.
105
					font_style: {
106
						element: 'font',
107
						attributes: { 'face': '#(family)' }
108
					},
109
 
110
					/*
111
					 * Font sizes.
112
					 */
113
					fontSize_sizes: 'xx-small/1;x-small/2;small/3;medium/4;large/5;x-large/6;xx-large/7',
114
					fontSize_style: {
115
						element: 'font',
116
						attributes: { 'size': '#(size)' }
117
					},
118
 
119
					/*
120
					 * Font colors.
121
					 */
122
 
123
					colorButton_foreStyle: {
124
						element: 'font',
125
						attributes: { 'color': '#(color)' }
126
					},
127
 
128
					colorButton_backStyle: {
129
						element: 'font',
130
						styles: { 'background-color': '#(color)' }
131
					},
132
 
133
					/*
134
					 * Styles combo.
135
					 */
136
					stylesSet: [
137
						{ name: 'Computer Code', element: 'code' },
138
						{ name: 'Keyboard Phrase', element: 'kbd' },
139
						{ name: 'Sample Text', element: 'samp' },
140
						{ name: 'Variable', element: 'var' },
141
						{ name: 'Deleted Text', element: 'del' },
142
						{ name: 'Inserted Text', element: 'ins' },
143
						{ name: 'Cited Work', element: 'cite' },
144
						{ name: 'Inline Quotation', element: 'q' }
145
					],
146
 
147
					on: {
148
						pluginsLoaded: configureTransformations,
149
						loaded: configureHtmlWriter
150
					}
151
				});
152
 
153
				/*
154
				 * Add missing content transformations.
155
				 */
156
				function configureTransformations( evt ) {
157
					var editor = evt.editor;
158
 
159
					editor.dataProcessor.htmlFilter.addRules( {
160
						attributes: {
161
							style: function( value, element ) {
162
								// Return #RGB for background and border colors
163
								return CKEDITOR.tools.convertRgbToHex( value );
164
							}
165
						}
166
					} );
167
 
168
					// Default automatic content transformations do not yet take care of
169
					// align attributes on blocks, so we need to add our own transformation rules.
170
					function alignToAttribute( element ) {
171
						if ( element.styles[ 'text-align' ] ) {
172
							element.attributes.align = element.styles[ 'text-align' ];
173
							delete element.styles[ 'text-align' ];
174
						}
175
					}
176
					editor.filter.addTransformations( [
177
						[ { element: 'p',	right: alignToAttribute } ],
178
						[ { element: 'h1',	right: alignToAttribute } ],
179
						[ { element: 'h2',	right: alignToAttribute } ],
180
						[ { element: 'h3',	right: alignToAttribute } ],
181
						[ { element: 'pre',	right: alignToAttribute } ]
182
					] );
183
				}
184
 
185
				/*
186
				 * Adjust the behavior of htmlWriter to make it output HTML like FCKeditor.
187
				 */
188
				function configureHtmlWriter( evt ) {
189
					var editor = evt.editor,
190
						dataProcessor = editor.dataProcessor;
191
 
192
					// Out self closing tags the HTML4 way, like <br>.
193
					dataProcessor.writer.selfClosingEnd = '>';
194
 
195
					// Make output formatting behave similar to FCKeditor.
196
					var dtd = CKEDITOR.dtd;
197
					for ( var e in CKEDITOR.tools.extend( {}, dtd.$nonBodyContent, dtd.$block, dtd.$listItem, dtd.$tableContent ) ) {
198
						dataProcessor.writer.setRules( e, {
199
							indent: true,
200
							breakBeforeOpen: true,
201
							breakAfterOpen: false,
202
							breakBeforeClose: !dtd[ e ][ '#' ],
203
							breakAfterClose: true
204
						});
205
					}
206
				}
207
 
208
			</script>
209
		</p>
210
		<p>
211
			<input type="submit" value="Submit">
212
		</p>
213
	</form>
214
	<div id="footer">
215
		<hr>
216
		<p>
217
			CKEditor - The text editor for the Internet - <a class="samples" href="https://ckeditor.com/">https://ckeditor.com</a>
218
		</p>
219
		<p id="copy">
220
			Copyright &copy; 2003-2021, <a class="samples" href="https://cksource.com/">CKSource</a> - Frederico
221
			Knabben. All rights reserved.
222
		</p>
223
	</div>
224
</body>
225
</html>