cf91e858d15698696edaf9a130d9de5af30c5d50
2 Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
3 For licensing, see LICENSE.html or http://ckeditor.com/license
6 // Register a templates definition set named "default".
7 CKEDITOR
.addTemplates( 'default',
9 // The name of sub folder which hold the shortcut preview images of the
11 imagesPath
: CKEDITOR
.getUrl( CKEDITOR
.plugins
.getPath( 'templates' ) + 'templates/images/' ),
13 // The templates definitions.
17 title
: 'Image and Title',
18 image
: 'template1.gif',
19 description
: 'One main image with a title and text that surround the image.',
22 '<img style="margin-right: 10px" height="100" width="100" align="left"/>' +
23 'Type the title here'+
26 'Type the text here' +
30 title
: 'Strange Template',
31 image
: 'template2.gif',
32 description
: 'A template that defines two colums, each one with a title, and some text.',
34 '<table cellspacing="0" cellpadding="0" style="width:100%" border="0">' +
36 '<td style="width:50%">' +
40 '<td style="width:50%">' +
55 'More text goes here.' +
59 title
: 'Text and Table',
60 image
: 'template3.gif',
61 description
: 'A title with some text and a table.',
63 '<div style="width: 80%">' +
67 '<table style="width:150px;float: right" cellspacing="0" cellpadding="0" border="1">' +
68 '<caption style="border:solid 1px black">' +
69 '<strong>Table title</strong>' +
89 'Type the text here' +