3 Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
4 For licensing, see LICENSE.md or http://ckeditor.com/license
9 <title>Data Filtering
— CKEditor Sample
</title>
10 <script src=
"../ckeditor.js"></script>
11 <link rel=
"stylesheet" href=
"sample.css">
13 // Remove advanced tabs for all editors.
14 CKEDITOR.config.removeDialogTabs = 'image:advanced;link:advanced;flash:advanced;creatediv:advanced;editdiv:advanced';
19 <a href=
"index.html">CKEditor Samples
</a> » Data Filtering and Features Activation
21 <div class=
"description">
23 This sample page demonstrates the idea of Advanced Content Filter
24 (
<abbr title=
"Advanced Content Filter">ACF
</abbr>), a sophisticated
25 tool that takes control over what kind of data is accepted by the editor and what
26 kind of output is produced.
28 <h2>When and what is being filtered?
</h2>
30 <abbr title=
"Advanced Content Filter">ACF
</abbr> controls
31 <strong>every single source of data
</strong> that comes to the editor.
32 It process both HTML that is inserted manually (i.e. pasted by the user)
33 and programmatically like:
36 editor.setData( '
<p
>Hello world!
</p
>' );
39 <abbr title=
"Advanced Content Filter">ACF
</abbr> discards invalid,
40 useless HTML tags and attributes so the editor remains
"clean" during
41 runtime.
<abbr title=
"Advanced Content Filter">ACF
</abbr> behaviour
42 can be configured and adjusted for a particular case to prevent the
43 output HTML (i.e. in CMS systems) from being polluted.
45 This kind of filtering is a first, client-side line of defense
46 against
"<a href="http://en.wikipedia.org/wiki/Tag_soup
">tag soups</a>",
47 the tool that precisely restricts which tags, attributes and styles
48 are allowed (desired). When properly configured,
<abbr title=
"Advanced Content Filter">ACF
</abbr>
49 is an easy and fast way to produce a high-quality, intentionally filtered HTML.
52 <h3>How to configure or disable ACF?
</h3>
54 Advanced Content Filter is enabled by default, working in
"automatic mode", yet
55 it provides a set of easy rules that allow adjusting filtering rules
56 and disabling the entire feature when necessary. The config property
57 responsible for this feature is
<code><a class=
"samples"
58 href=
"http://docs.ckeditor.com/#!/api/CKEDITOR.config-cfg-allowedContent">config.allowedContent
</a></code>.
61 By
"automatic mode" is meant that loaded plugins decide which kind
62 of content is enabled and which is not. For example, if the link
63 plugin is loaded it implies that
<code><a
></code> tag is
64 automatically allowed. Each plugin is given a set
65 of predefined
<abbr title=
"Advanced Content Filter">ACF
</abbr> rules
66 that control the editor until
<code><a class=
"samples"
67 href=
"http://docs.ckeditor.com/#!/api/CKEDITOR.config-cfg-allowedContent">
68 config.allowedContent
</a></code>
72 Let's assume our intention is to restrict the editor to accept (produce)
<strong>paragraphs
73 only: no attributes, no styles, no other tags
</strong>.
74 With
<abbr title=
"Advanced Content Filter">ACF
</abbr>
75 this is very simple. Basically set
<code><a class=
"samples"
76 href=
"http://docs.ckeditor.com/#!/api/CKEDITOR.config-cfg-allowedContent">
77 config.allowedContent
</a></code> to
<code>'p'
</code>:
80 var editor = CKEDITOR.replace(
<em>textarea_id
</em>, {
81 <strong>allowedContent: 'p'
</strong>
85 Now try to play with allowed content:
88 // Trying to insert disallowed tag and attribute.
89 editor.setData( '
<p
<strong>style=
"color: red"</strong>>Hello
<strong><em
>world
</em
></strong>!
</p
>' );
90 alert( editor.getData() );
92 // Filtered data is returned.
93 "<p>Hello world!</p>"
96 What happened? Since
<code>config.allowedContent: 'p'
</code> is set the editor assumes
97 that only plain
<code><p
></code> are accepted. Nothing more. This is why
98 <code>style
</code> attribute and
<code><em
></code> tag are gone. The same
99 filtering would happen if we pasted disallowed HTML into this editor.
102 This is just a small sample of what
<abbr title=
"Advanced Content Filter">ACF
</abbr>
103 can do. To know more, please refer to the sample section below and
104 <a href=
"http://docs.ckeditor.com/#!/guide/dev_advanced_content_filter">the official Advanced Content Filter guide
</a>.
107 You may, of course, want CKEditor to avoid filtering of any kind.
108 To get rid of
<abbr title=
"Advanced Content Filter">ACF
</abbr>,
109 basically set
<code><a class=
"samples"
110 href=
"http://docs.ckeditor.com/#!/api/CKEDITOR.config-cfg-allowedContent">
111 config.allowedContent
</a></code> to
<code>true
</code> like this:
113 <pre class=
"samples">
114 CKEDITOR.replace(
<em>textarea_id
</em>, {
115 <strong>allowedContent: true
</strong>
119 <h2>Beyond data flow: Features activation
</h2>
121 <abbr title=
"Advanced Content Filter">ACF
</abbr> is far more than
122 <abbr title=
"Input/Output">I/O
</abbr> control: the entire
123 <abbr title=
"User Interface">UI
</abbr> of the editor is adjusted to what
124 filters restrict. For example: if
<code><a
></code> tag is
125 <strong>disallowed
</strong>
126 by
<abbr title=
"Advanced Content Filter">ACF
</abbr>,
127 then accordingly
<code>link
</code> command, toolbar button and link dialog
128 are also disabled. Editor is smart: it knows which features must be
129 removed from the interface to match filtering rules.
132 CKEditor can be far more specific. If
<code><a
></code> tag is
133 <strong>allowed
</strong> by filtering rules to be used but it is restricted
134 to have only one attribute (
<code>href
</code>)
135 <code>config.allowedContent = 'a[!href]'
</code>, then
136 "Target" tab of the link dialog is automatically disabled as
<code>target
</code>
137 attribute isn't included in
<abbr title=
"Advanced Content Filter">ACF
</abbr> rules
138 for
<code><a
></code>. This behaviour applies to dialog fields, context
139 menus and toolbar buttons.
142 <h2>Sample configurations
</h2>
144 There are several editor instances below that present different
145 <abbr title=
"Advanced Content Filter">ACF
</abbr> setups.
<strong>All of them,
146 except the last inline instance, share the same HTML content
</strong> to visualize
147 how different filtering rules affect the same input data.
152 <label for=
"editor1">
155 <div class=
"description">
157 This editor is using default configuration (
"automatic mode"). It means that
158 <code><a class=
"samples"
159 href=
"http://docs.ckeditor.com/#!/api/CKEDITOR.config-cfg-allowedContent">
160 config.allowedContent
</a></code> is defined by loaded plugins.
161 Each plugin extends filtering rules to make it's own associated content
162 available for the user.
165 <textarea cols=
"80" id=
"editor1" name=
"editor1" rows=
"10">
166 <h1
><img alt=
"Saturn V carrying Apollo
11" class=
"right
" src=
"assets/sample.jpg
"/
> Apollo
11</h1
> <p
><b
>Apollo
11</b
> was the spaceflight that landed the first humans, Americans
<a href=
"http://en.wikipedia.org/wiki/Neil_Armstrong
" title=
"Neil Armstrong
">Neil Armstrong
</a
> and
<a href=
"http://en.wikipedia.org/wiki/Buzz_Aldrin
" title=
"Buzz Aldrin
">Buzz Aldrin
</a
>, on the Moon on July
20,
1969, at
20:
18 UTC. Armstrong became the first to step onto the lunar surface
6 hours later on July
21 at
02:
56 UTC.
</p
> <p
>Armstrong spent about
<s
>three and a half
</s
> two and a half hours outside the spacecraft, Aldrin slightly less; and together they collected
47.5 pounds (
21.5&nbsp;kg) of lunar material for return to Earth. A third member of the mission,
<a href=
"http://en.wikipedia.org/wiki/Michael_Collins_(astronaut)
" title=
"Michael Collins (astronaut)
">Michael Collins
</a
>, piloted the
<a href=
"http://en.wikipedia.org/wiki/Apollo_Command/Service_Module
" title=
"Apollo Command/Service Module
">command
</a
> spacecraft alone in lunar orbit until Armstrong and Aldrin returned to it for the trip back to Earth.
</p
> <h2
>Broadcasting and
<em
>quotes
</em
> <a id=
"quotes
" name=
"quotes
"></a
></h2
> <p
>Broadcast on live TV to a world-wide audience, Armstrong stepped onto the lunar surface and described the event as:
</p
> <blockquote
><p
>One small step for [a] man, one giant leap for mankind.
</p
></blockquote
> <p
>Apollo
11 effectively ended the
<a href=
"http://en.wikipedia.org/wiki/Space_Race
" title=
"Space Race
">Space Race
</a
> and fulfilled a national goal proposed in
1961 by the late U.S. President
<a href=
"http://en.wikipedia.org/wiki/John_F._Kennedy
" title=
"John F. Kennedy
">John F. Kennedy
</a
> in a speech before the United States Congress:
</p
> <blockquote
><p
>[...] before this decade is out, of landing a man on the Moon and returning him safely to the Earth.
</p
></blockquote
> <h2
>Technical details
<a id=
"tech-details
" name=
"tech-details
"></a
></h2
> <table align=
"right
" border=
"1" bordercolor=
"#ccc
" cellpadding=
"5" cellspacing=
"0" style=
"border-collapse:collapse;margin:
10px
0 10px
15px;
"> <caption
><strong
>Mission crew
</strong
></caption
> <thead
> <tr
> <th scope=
"col
">Position
</th
> <th scope=
"col
">Astronaut
</th
> </tr
> </thead
> <tbody
> <tr
> <td
>Commander
</td
> <td
>Neil A. Armstrong
</td
> </tr
> <tr
> <td
>Command Module Pilot
</td
> <td
>Michael Collins
</td
> </tr
> <tr
> <td
>Lunar Module Pilot
</td
> <td
>Edwin
&quot;Buzz
&quot; E. Aldrin, Jr.
</td
> </tr
> </tbody
> </table
> <p
>Launched by a
<strong
>Saturn V
</strong
> rocket from
<a href=
"http://en.wikipedia.org/wiki/Kennedy_Space_Center
" title=
"Kennedy Space Center
">Kennedy Space Center
</a
> in Merritt Island, Florida on July
16, Apollo
11 was the fifth manned mission of
<a href=
"http://en.wikipedia.org/wiki/NASA
" title=
"NASA
">NASA
</a
>&#
39;s Apollo program. The Apollo spacecraft had three parts:
</p
> <ol
> <li
><strong
>Command Module
</strong
> with a cabin for the three astronauts which was the only part which landed back on Earth
</li
> <li
><strong
>Service Module
</strong
> which supported the Command Module with propulsion, electrical power, oxygen and water
</li
> <li
><strong
>Lunar Module
</strong
> for landing on the Moon.
</li
> </ol
> <p
>After being sent to the Moon by the Saturn V
&#
39;s upper stage, the astronauts separated the spacecraft from it and travelled for three days until they entered into lunar orbit. Armstrong and Aldrin then moved into the Lunar Module and landed in the
<a href=
"http://en.wikipedia.org/wiki/Mare_Tranquillitatis
" title=
"Mare Tranquillitatis
">Sea of Tranquility
</a
>. They stayed a total of about
21 and a half hours on the lunar surface. After lifting off in the upper part of the Lunar Module and rejoining Collins in the Command Module, they returned to Earth and landed in the
<a href=
"http://en.wikipedia.org/wiki/Pacific_Ocean
" title=
"Pacific Ocean
">Pacific Ocean
</a
> on July
24.
</p
> <hr/
> <p style=
"text-align: right;
"><small
>Source:
<a href=
"http://en.wikipedia.org/wiki/Apollo_11
">Wikipedia.org
</a
></small
></p
>
171 CKEDITOR.replace( 'editor1' );
179 <label for=
"editor2">
182 <div class=
"description">
184 This editor is using a custom configuration for
185 <abbr title=
"Advanced Content Filter">ACF
</abbr>:
187 <pre class=
"samples">
188 CKEDITOR.replace( 'editor2', {
190 'h1 h2 h3 p blockquote strong em;' +
192 'img(left,right)[!src,alt,width,height];' +
193 'table tr th td caption;' +
194 'span{!font-family};' +'
201 The following rules may require additional explanation:
205 <code>h1 h2 h3 p blockquote strong em
</code> - These tags
206 are accepted by the editor. Any tag attributes will be discarded.
209 <code>a[!href]
</code> -
<code>href
</code> attribute is obligatory
210 for
<code><a
></code> tag. Tags without this attribute
211 are disarded. No other attribute will be accepted.
214 <code>img(left,right)[!src,alt,width,height]
</code> -
<code>src
</code>
215 attribute is obligatory for
<code><img
></code> tag.
216 <code>alt
</code>,
<code>width
</code>,
<code>height
</code>
217 and
<code>class
</code> attributes are accepted but
218 <code>class
</code> must be either
<code>class=
"left"</code>
219 or
<code>class=
"right"</code>
222 <code>table tr th td caption
</code> - These tags
223 are accepted by the editor. Any tag attributes will be discarded.
226 <code>span{!font-family}
</code>,
<code>span{!color}
</code>,
227 <code>span(!marker)
</code> -
<code><span
></code> tags
228 will be accepted if either
<code>font-family
</code> or
229 <code>color
</code> style is set or
<code>class=
"marker"</code>
233 <code>del ins
</code> - These tags
234 are accepted by the editor. Any tag attributes will be discarded.
238 Please note that
<strong><abbr title=
"User Interface">UI
</abbr> of the
239 editor is different
</strong>. It's a response to what happened to the filters.
240 Since
<code>text-align
</code> isn't allowed, the align toolbar is gone.
241 The same thing happened to subscript/superscript, strike, underline
242 (
<code><u
></code>,
<code><sub
></code>,
<code><sup
></code>
243 are disallowed by
<code><a class=
"samples"
244 href=
"http://docs.ckeditor.com/#!/api/CKEDITOR.config-cfg-allowedContent">
245 config.allowedContent
</a></code>) and many other buttons.
248 <textarea cols=
"80" id=
"editor2" name=
"editor2" rows=
"10">
249 <h1
><img alt=
"Saturn V carrying Apollo
11" class=
"right
" src=
"assets/sample.jpg
"/
> Apollo
11</h1
> <p
><b
>Apollo
11</b
> was the spaceflight that landed the first humans, Americans
<a href=
"http://en.wikipedia.org/wiki/Neil_Armstrong
" title=
"Neil Armstrong
">Neil Armstrong
</a
> and
<a href=
"http://en.wikipedia.org/wiki/Buzz_Aldrin
" title=
"Buzz Aldrin
">Buzz Aldrin
</a
>, on the Moon on July
20,
1969, at
20:
18 UTC. Armstrong became the first to step onto the lunar surface
6 hours later on July
21 at
02:
56 UTC.
</p
> <p
>Armstrong spent about
<s
>three and a half
</s
> two and a half hours outside the spacecraft, Aldrin slightly less; and together they collected
47.5 pounds (
21.5&nbsp;kg) of lunar material for return to Earth. A third member of the mission,
<a href=
"http://en.wikipedia.org/wiki/Michael_Collins_(astronaut)
" title=
"Michael Collins (astronaut)
">Michael Collins
</a
>, piloted the
<a href=
"http://en.wikipedia.org/wiki/Apollo_Command/Service_Module
" title=
"Apollo Command/Service Module
">command
</a
> spacecraft alone in lunar orbit until Armstrong and Aldrin returned to it for the trip back to Earth.
</p
> <h2
>Broadcasting and
<em
>quotes
</em
> <a id=
"quotes
" name=
"quotes
"></a
></h2
> <p
>Broadcast on live TV to a world-wide audience, Armstrong stepped onto the lunar surface and described the event as:
</p
> <blockquote
><p
>One small step for [a] man, one giant leap for mankind.
</p
></blockquote
> <p
>Apollo
11 effectively ended the
<a href=
"http://en.wikipedia.org/wiki/Space_Race
" title=
"Space Race
">Space Race
</a
> and fulfilled a national goal proposed in
1961 by the late U.S. President
<a href=
"http://en.wikipedia.org/wiki/John_F._Kennedy
" title=
"John F. Kennedy
">John F. Kennedy
</a
> in a speech before the United States Congress:
</p
> <blockquote
><p
>[...] before this decade is out, of landing a man on the Moon and returning him safely to the Earth.
</p
></blockquote
> <h2
>Technical details
<a id=
"tech-details
" name=
"tech-details
"></a
></h2
> <table align=
"right
" border=
"1" bordercolor=
"#ccc
" cellpadding=
"5" cellspacing=
"0" style=
"border-collapse:collapse;margin:
10px
0 10px
15px;
"> <caption
><strong
>Mission crew
</strong
></caption
> <thead
> <tr
> <th scope=
"col
">Position
</th
> <th scope=
"col
">Astronaut
</th
> </tr
> </thead
> <tbody
> <tr
> <td
>Commander
</td
> <td
>Neil A. Armstrong
</td
> </tr
> <tr
> <td
>Command Module Pilot
</td
> <td
>Michael Collins
</td
> </tr
> <tr
> <td
>Lunar Module Pilot
</td
> <td
>Edwin
&quot;Buzz
&quot; E. Aldrin, Jr.
</td
> </tr
> </tbody
> </table
> <p
>Launched by a
<strong
>Saturn V
</strong
> rocket from
<a href=
"http://en.wikipedia.org/wiki/Kennedy_Space_Center
" title=
"Kennedy Space Center
">Kennedy Space Center
</a
> in Merritt Island, Florida on July
16, Apollo
11 was the fifth manned mission of
<a href=
"http://en.wikipedia.org/wiki/NASA
" title=
"NASA
">NASA
</a
>&#
39;s Apollo program. The Apollo spacecraft had three parts:
</p
> <ol
> <li
><strong
>Command Module
</strong
> with a cabin for the three astronauts which was the only part which landed back on Earth
</li
> <li
><strong
>Service Module
</strong
> which supported the Command Module with propulsion, electrical power, oxygen and water
</li
> <li
><strong
>Lunar Module
</strong
> for landing on the Moon.
</li
> </ol
> <p
>After being sent to the Moon by the Saturn V
&#
39;s upper stage, the astronauts separated the spacecraft from it and travelled for three days until they entered into lunar orbit. Armstrong and Aldrin then moved into the Lunar Module and landed in the
<a href=
"http://en.wikipedia.org/wiki/Mare_Tranquillitatis
" title=
"Mare Tranquillitatis
">Sea of Tranquility
</a
>. They stayed a total of about
21 and a half hours on the lunar surface. After lifting off in the upper part of the Lunar Module and rejoining Collins in the Command Module, they returned to Earth and landed in the
<a href=
"http://en.wikipedia.org/wiki/Pacific_Ocean
" title=
"Pacific Ocean
">Pacific Ocean
</a
> on July
24.
</p
> <hr/
> <p style=
"text-align: right;
"><small
>Source:
<a href=
"http://en.wikipedia.org/wiki/Apollo_11
">Wikipedia.org
</a
></small
></p
>
253 CKEDITOR.replace( 'editor2', {
255 'h1 h2 h3 p blockquote strong em;' +
257 'img(left,right)[!src,alt,width,height];' +
258 'table tr th td caption;' +
259 'span{!font-family};' +
271 <label for=
"editor3">
274 <div class=
"description">
276 This editor is using a custom configuration for
277 <abbr title=
"Advanced Content Filter">ACF
</abbr>.
278 Note that filters can be configured as an object literal
279 as an alternative to a string-based definition.
281 <pre class=
"samples">
282 CKEDITOR.replace( 'editor3', {
284 'b i ul ol big small': true,
285 'h1 h2 h3 p blockquote li': {
288 a: { attributes: '!href,target' },
290 attributes: '!src,alt',
291 styles: 'width,height',
292 classes: 'left,right'
298 <textarea cols=
"80" id=
"editor3" name=
"editor3" rows=
"10">
299 <h1
><img alt=
"Saturn V carrying Apollo
11" class=
"right
" src=
"assets/sample.jpg
"/
> Apollo
11</h1
> <p
><b
>Apollo
11</b
> was the spaceflight that landed the first humans, Americans
<a href=
"http://en.wikipedia.org/wiki/Neil_Armstrong
" title=
"Neil Armstrong
">Neil Armstrong
</a
> and
<a href=
"http://en.wikipedia.org/wiki/Buzz_Aldrin
" title=
"Buzz Aldrin
">Buzz Aldrin
</a
>, on the Moon on July
20,
1969, at
20:
18 UTC. Armstrong became the first to step onto the lunar surface
6 hours later on July
21 at
02:
56 UTC.
</p
> <p
>Armstrong spent about
<s
>three and a half
</s
> two and a half hours outside the spacecraft, Aldrin slightly less; and together they collected
47.5 pounds (
21.5&nbsp;kg) of lunar material for return to Earth. A third member of the mission,
<a href=
"http://en.wikipedia.org/wiki/Michael_Collins_(astronaut)
" title=
"Michael Collins (astronaut)
">Michael Collins
</a
>, piloted the
<a href=
"http://en.wikipedia.org/wiki/Apollo_Command/Service_Module
" title=
"Apollo Command/Service Module
">command
</a
> spacecraft alone in lunar orbit until Armstrong and Aldrin returned to it for the trip back to Earth.
</p
> <h2
>Broadcasting and
<em
>quotes
</em
> <a id=
"quotes
" name=
"quotes
"></a
></h2
> <p
>Broadcast on live TV to a world-wide audience, Armstrong stepped onto the lunar surface and described the event as:
</p
> <blockquote
><p
>One small step for [a] man, one giant leap for mankind.
</p
></blockquote
> <p
>Apollo
11 effectively ended the
<a href=
"http://en.wikipedia.org/wiki/Space_Race
" title=
"Space Race
">Space Race
</a
> and fulfilled a national goal proposed in
1961 by the late U.S. President
<a href=
"http://en.wikipedia.org/wiki/John_F._Kennedy
" title=
"John F. Kennedy
">John F. Kennedy
</a
> in a speech before the United States Congress:
</p
> <blockquote
><p
>[...] before this decade is out, of landing a man on the Moon and returning him safely to the Earth.
</p
></blockquote
> <h2
>Technical details
<a id=
"tech-details
" name=
"tech-details
"></a
></h2
> <table align=
"right
" border=
"1" bordercolor=
"#ccc
" cellpadding=
"5" cellspacing=
"0" style=
"border-collapse:collapse;margin:
10px
0 10px
15px;
"> <caption
><strong
>Mission crew
</strong
></caption
> <thead
> <tr
> <th scope=
"col
">Position
</th
> <th scope=
"col
">Astronaut
</th
> </tr
> </thead
> <tbody
> <tr
> <td
>Commander
</td
> <td
>Neil A. Armstrong
</td
> </tr
> <tr
> <td
>Command Module Pilot
</td
> <td
>Michael Collins
</td
> </tr
> <tr
> <td
>Lunar Module Pilot
</td
> <td
>Edwin
&quot;Buzz
&quot; E. Aldrin, Jr.
</td
> </tr
> </tbody
> </table
> <p
>Launched by a
<strong
>Saturn V
</strong
> rocket from
<a href=
"http://en.wikipedia.org/wiki/Kennedy_Space_Center
" title=
"Kennedy Space Center
">Kennedy Space Center
</a
> in Merritt Island, Florida on July
16, Apollo
11 was the fifth manned mission of
<a href=
"http://en.wikipedia.org/wiki/NASA
" title=
"NASA
">NASA
</a
>&#
39;s Apollo program. The Apollo spacecraft had three parts:
</p
> <ol
> <li
><strong
>Command Module
</strong
> with a cabin for the three astronauts which was the only part which landed back on Earth
</li
> <li
><strong
>Service Module
</strong
> which supported the Command Module with propulsion, electrical power, oxygen and water
</li
> <li
><strong
>Lunar Module
</strong
> for landing on the Moon.
</li
> </ol
> <p
>After being sent to the Moon by the Saturn V
&#
39;s upper stage, the astronauts separated the spacecraft from it and travelled for three days until they entered into lunar orbit. Armstrong and Aldrin then moved into the Lunar Module and landed in the
<a href=
"http://en.wikipedia.org/wiki/Mare_Tranquillitatis
" title=
"Mare Tranquillitatis
">Sea of Tranquility
</a
>. They stayed a total of about
21 and a half hours on the lunar surface. After lifting off in the upper part of the Lunar Module and rejoining Collins in the Command Module, they returned to Earth and landed in the
<a href=
"http://en.wikipedia.org/wiki/Pacific_Ocean
" title=
"Pacific Ocean
">Pacific Ocean
</a
> on July
24.
</p
> <hr/
> <p style=
"text-align: right;
"><small
>Source:
<a href=
"http://en.wikipedia.org/wiki/Apollo_11
">Wikipedia.org
</a
></small
></p
>
303 CKEDITOR.replace( 'editor3', {
305 'b i ul ol big small': true,
306 'h1 h2 h3 p blockquote li': {
309 a: { attributes: '!href,target' },
311 attributes: '!src,alt',
312 styles: 'width,height',
313 classes: 'left,right'
324 <label for=
"editor4">
327 <div class=
"description">
329 This editor is using a custom set of plugins and buttons.
331 <pre class=
"samples">
332 CKEDITOR.replace( 'editor4', {
333 removePlugins: 'bidi,font,forms,flash,horizontalrule,iframe,justify,table,tabletools,smiley',
334 removeButtons: 'Anchor,Underline,Strike,Subscript,Superscript,Image',
335 format_tags: 'p;h1;h2;h3;pre;address'
339 As you can see, removing plugins and buttons implies filtering.
340 Several tags are not allowed in the editor because there's no
341 plugin/button that is responsible for creating and editing this
342 kind of content (for example: the image is missing because
343 of
<code>removeButtons: 'Image'
</code>). The conclusion is that
344 <abbr title=
"Advanced Content Filter">ACF
</abbr> works
"backwards"
345 as well:
<strong>modifying
<abbr title=
"User Interface">UI
</abbr>
346 elements is changing allowed content rules
</strong>.
349 <textarea cols=
"80" id=
"editor4" name=
"editor4" rows=
"10">
350 <h1
><img alt=
"Saturn V carrying Apollo
11" class=
"right
" src=
"assets/sample.jpg
"/
> Apollo
11</h1
> <p
><b
>Apollo
11</b
> was the spaceflight that landed the first humans, Americans
<a href=
"http://en.wikipedia.org/wiki/Neil_Armstrong
" title=
"Neil Armstrong
">Neil Armstrong
</a
> and
<a href=
"http://en.wikipedia.org/wiki/Buzz_Aldrin
" title=
"Buzz Aldrin
">Buzz Aldrin
</a
>, on the Moon on July
20,
1969, at
20:
18 UTC. Armstrong became the first to step onto the lunar surface
6 hours later on July
21 at
02:
56 UTC.
</p
> <p
>Armstrong spent about
<s
>three and a half
</s
> two and a half hours outside the spacecraft, Aldrin slightly less; and together they collected
47.5 pounds (
21.5&nbsp;kg) of lunar material for return to Earth. A third member of the mission,
<a href=
"http://en.wikipedia.org/wiki/Michael_Collins_(astronaut)
" title=
"Michael Collins (astronaut)
">Michael Collins
</a
>, piloted the
<a href=
"http://en.wikipedia.org/wiki/Apollo_Command/Service_Module
" title=
"Apollo Command/Service Module
">command
</a
> spacecraft alone in lunar orbit until Armstrong and Aldrin returned to it for the trip back to Earth.
</p
> <h2
>Broadcasting and
<em
>quotes
</em
> <a id=
"quotes
" name=
"quotes
"></a
></h2
> <p
>Broadcast on live TV to a world-wide audience, Armstrong stepped onto the lunar surface and described the event as:
</p
> <blockquote
><p
>One small step for [a] man, one giant leap for mankind.
</p
></blockquote
> <p
>Apollo
11 effectively ended the
<a href=
"http://en.wikipedia.org/wiki/Space_Race
" title=
"Space Race
">Space Race
</a
> and fulfilled a national goal proposed in
1961 by the late U.S. President
<a href=
"http://en.wikipedia.org/wiki/John_F._Kennedy
" title=
"John F. Kennedy
">John F. Kennedy
</a
> in a speech before the United States Congress:
</p
> <blockquote
><p
>[...] before this decade is out, of landing a man on the Moon and returning him safely to the Earth.
</p
></blockquote
> <h2
>Technical details
<a id=
"tech-details
" name=
"tech-details
"></a
></h2
> <table align=
"right
" border=
"1" bordercolor=
"#ccc
" cellpadding=
"5" cellspacing=
"0" style=
"border-collapse:collapse;margin:
10px
0 10px
15px;
"> <caption
><strong
>Mission crew
</strong
></caption
> <thead
> <tr
> <th scope=
"col
">Position
</th
> <th scope=
"col
">Astronaut
</th
> </tr
> </thead
> <tbody
> <tr
> <td
>Commander
</td
> <td
>Neil A. Armstrong
</td
> </tr
> <tr
> <td
>Command Module Pilot
</td
> <td
>Michael Collins
</td
> </tr
> <tr
> <td
>Lunar Module Pilot
</td
> <td
>Edwin
&quot;Buzz
&quot; E. Aldrin, Jr.
</td
> </tr
> </tbody
> </table
> <p
>Launched by a
<strong
>Saturn V
</strong
> rocket from
<a href=
"http://en.wikipedia.org/wiki/Kennedy_Space_Center
" title=
"Kennedy Space Center
">Kennedy Space Center
</a
> in Merritt Island, Florida on July
16, Apollo
11 was the fifth manned mission of
<a href=
"http://en.wikipedia.org/wiki/NASA
" title=
"NASA
">NASA
</a
>&#
39;s Apollo program. The Apollo spacecraft had three parts:
</p
> <ol
> <li
><strong
>Command Module
</strong
> with a cabin for the three astronauts which was the only part which landed back on Earth
</li
> <li
><strong
>Service Module
</strong
> which supported the Command Module with propulsion, electrical power, oxygen and water
</li
> <li
><strong
>Lunar Module
</strong
> for landing on the Moon.
</li
> </ol
> <p
>After being sent to the Moon by the Saturn V
&#
39;s upper stage, the astronauts separated the spacecraft from it and travelled for three days until they entered into lunar orbit. Armstrong and Aldrin then moved into the Lunar Module and landed in the
<a href=
"http://en.wikipedia.org/wiki/Mare_Tranquillitatis
" title=
"Mare Tranquillitatis
">Sea of Tranquility
</a
>. They stayed a total of about
21 and a half hours on the lunar surface. After lifting off in the upper part of the Lunar Module and rejoining Collins in the Command Module, they returned to Earth and landed in the
<a href=
"http://en.wikipedia.org/wiki/Pacific_Ocean
" title=
"Pacific Ocean
">Pacific Ocean
</a
> on July
24.
</p
> <hr/
> <p style=
"text-align: right;
"><small
>Source:
<a href=
"http://en.wikipedia.org/wiki/Apollo_11
">Wikipedia.org
</a
></small
></p
>
354 CKEDITOR.replace( 'editor4', {
355 removePlugins: 'bidi,div,font,forms,flash,horizontalrule,iframe,justify,table,tabletools,smiley',
356 removeButtons: 'Anchor,Underline,Strike,Subscript,Superscript,Image',
357 format_tags: 'p;h1;h2;h3;pre;address'
366 <label for=
"editor5">
369 <div class=
"description">
371 This editor is built on editable
<code><h1
></code> element.
372 <abbr title=
"Advanced Content Filter">ACF
</abbr> takes care of
373 what can be included in
<code><h1
></code>. Note that there
374 are no block styles in Styles combo. Also why lists, indentation,
375 blockquote, div, form and other buttons are missing.
378 <abbr title=
"Advanced Content Filter">ACF
</abbr> makes sure that
379 no disallowed tags will come to
<code><h1
></code> so the final
380 markup is valid. If the user tried to paste some invalid HTML
381 into this editor (let's say a list), it would be automatically
382 converted into plain text.
385 <h1 id=
"editor5" contenteditable=
"true">
386 <em>Apollo
11</em> was the spaceflight that landed the first humans, Americans
<a href=
"http://en.wikipedia.org/wiki/Neil_Armstrong" title=
"Neil Armstrong">Neil Armstrong
</a> and
<a href=
"http://en.wikipedia.org/wiki/Buzz_Aldrin" title=
"Buzz Aldrin">Buzz Aldrin
</a>, on the Moon on July
20,
1969, at
20:
18 UTC.
393 CKEditor - The text editor for the Internet -
<a class=
"samples" href=
"http://ckeditor.com/">http://ckeditor.com
</a>
396 Copyright
© 2003-
2014,
<a class=
"samples" href=
"http://cksource.com/">CKSource
</a> - Frederico
397 Knabben. All rights reserved.