JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
vanilla ckeditor-3.6.3
[ckeditor.git] / _samples / stylesheetparser.html
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">\r
2 <!--\r
3 Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.\r
4 For licensing, see LICENSE.html or http://ckeditor.com/license\r
5 -->\r
6 <html xmlns="http://www.w3.org/1999/xhtml">\r
7 <head>\r
8         <title>Using Stylesheet Parser Plugin &mdash; CKEditor Sample</title>\r
9         <meta content="text/html; charset=utf-8" http-equiv="content-type" />\r
10         <script type="text/javascript" src="../ckeditor.js"></script>\r
11         <script src="sample.js" type="text/javascript"></script>\r
12         <link href="sample.css" rel="stylesheet" type="text/css" />\r
13 </head>\r
14 <body>\r
15         <h1 class="samples">\r
16                 CKEditor Sample &mdash; Using the Stylesheet Parser Plugin\r
17         </h1>\r
18         <div class="description">\r
19         <p>\r
20                 This sample shows how to configure CKEditor instances to use the\r
21                 <strong>Stylesheet Parser</strong> (<code>stylesheetparser</code>) plugin that fills\r
22                 the <strong>Styles</strong> drop-down list based on the CSS rules available in the document stylesheet.\r
23         </p>\r
24         <p>\r
25                 To add a CKEditor instance using the <code>stylesheetparser</code> plugin, insert\r
26                 the following JavaScript call into your code:\r
27         </p>\r
28         <pre class="samples">CKEDITOR.replace( '<em>textarea_id</em>',\r
29         {\r
30                 <strong>extraPlugins : 'stylesheetparser'</strong>\r
31         });</pre>\r
32         <p>\r
33                 Note that <code><em>textarea_id</em></code> in the code above is the <code>id</code> attribute of\r
34                 the <code>&lt;textarea&gt;</code> element to be replaced with CKEditor.\r
35         </p>\r
36         </div>\r
37 \r
38         <!-- This <div> holds alert messages to be display in the sample page. -->\r
39         <div id="alerts">\r
40                 <noscript>\r
41                         <p>\r
42                                 <strong>CKEditor requires JavaScript to run</strong>. In a browser with no JavaScript\r
43                                 support, like yours, you should still see the contents (HTML data) and you should\r
44                                 be able to edit it normally, without a rich editor interface.\r
45                         </p>\r
46                 </noscript>\r
47         </div>\r
48         <form action="sample_posteddata.php" method="post">\r
49                 <p>\r
50                         <label for="editor1">\r
51                                 CKEditor using the <code>stylesheetparser</code> plugin with its default configuration:</label>\r
52                         <textarea cols="80" id="editor1" name="editor1" rows="10">&lt;p&gt;This is some &lt;strong&gt;sample text&lt;/strong&gt;. You are using &lt;a href="http://ckeditor.com/"&gt;CKEditor&lt;/a&gt;.&lt;/p&gt;</textarea>\r
53                         <script type="text/javascript">\r
54                         //<![CDATA[\r
55 \r
56                                 // This call can be placed at any point after the\r
57                                 // <textarea>, or inside a <head><script> in a\r
58                                 // window.onload event handler.\r
59 \r
60                                 // Replace the <textarea id="editor"> with an CKEditor\r
61                                 // instance, using default configurations.\r
62                                 CKEDITOR.replace( 'editor1' ,\r
63                                 {\r
64                                         extraPlugins : 'stylesheetparser',\r
65                                         /*\r
66                                          * Stylesheet for the contents.\r
67                                          */\r
68                                         contentsCss : 'assets/parsesample.css',\r
69                                         /*\r
70                                          *  Do not load the default Styles configuration.\r
71                                          */\r
72                                         stylesSet : []\r
73                                 });\r
74 \r
75                         //]]>\r
76                         </script>\r
77                 </p>\r
78                 <p>\r
79                         <input type="submit" value="Submit" />\r
80                 </p>\r
81         </form>\r
82         <div id="footer">\r
83                 <hr />\r
84                 <p>\r
85                         CKEditor - The text editor for the Internet - <a class="samples" href="http://ckeditor.com/">http://ckeditor.com</a>\r
86                 </p>\r
87                 <p id="copy">\r
88                         Copyright &copy; 2003-2012, <a class="samples" href="http://cksource.com/">CKSource</a> - Frederico\r
89                         Knabben. All rights reserved.\r
90                 </p>\r
91         </div>\r
92 </body>\r
93 </html>\r