6056 |
efrain |
1 |
<h2>Classic Editor</h2>
|
|
|
2 |
<textarea id="editor1">
|
|
|
3 |
<span class="badge badge-success">Classic Editor</span>
|
|
|
4 |
</textarea>
|
|
|
5 |
|
|
|
6 |
<h2>Divarea Editor</h2>
|
|
|
7 |
<div id="editor2">
|
|
|
8 |
<span class="badge badge-success">Divarea Editor</span>
|
|
|
9 |
</div>
|
|
|
10 |
|
|
|
11 |
<h2>Inline Editor</h2>
|
|
|
12 |
<div id="editor3" contenteditable="true">
|
|
|
13 |
<span class="badge badge-success">Inline Editor</span>
|
|
|
14 |
</div>
|
|
|
15 |
|
|
|
16 |
<script>
|
|
|
17 |
exportPdfUtils.initManualTest();
|
|
|
18 |
|
|
|
19 |
CKEDITOR.replace( 'editor1', exportPdfUtils.getDefaultConfig( 'manual', {
|
|
|
20 |
exportPdf_stylesheets: [ 'https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css' ],
|
|
|
21 |
extraPlugins: 'wysiwygarea,exportpdf',
|
|
|
22 |
allowedContent: true
|
|
|
23 |
} ) );
|
|
|
24 |
|
|
|
25 |
CKEDITOR.replace( 'editor2', exportPdfUtils.getDefaultConfig( 'manual', {
|
|
|
26 |
exportPdf_stylesheets: [ 'https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css' ],
|
|
|
27 |
extraPlugins: 'divarea,exportpdf',
|
|
|
28 |
allowedContent: true
|
|
|
29 |
} ) );
|
|
|
30 |
|
|
|
31 |
CKEDITOR.inline( 'editor3', exportPdfUtils.getDefaultConfig( 'manual', {
|
|
|
32 |
exportPdf_stylesheets: [ 'https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css' ],
|
|
|
33 |
extraPlugins: 'floatingspace,exportpdf',
|
|
|
34 |
allowedContent: true
|
|
|
35 |
} ) );
|
|
|
36 |
</script>
|