Page 1 of 1

editor ;)

Posted: Sat Jun 24, 2017 3:36 pm
by turboblack
Hey. I'm trying to figure out how to make my own plug-in for editing. I stopped here on this editor https://quilljs.com/docs/quickstart/


To add an editor there is this code

Code: Select all

<!-- Include stylesheet -->
<link href="https://cdn.quilljs.com/1.2.6/quill.snow.css" rel="stylesheet">

<!-- Create the editor container -->
<div id="editor">
  <p>Hello World!</p>
  <p>Some initial <strong>bold</strong> text</p>
  <p><br></p>
</div>

<!-- Include the Quill library -->
<script src="https://cdn.quilljs.com/1.2.6/quill.js"></script>

<!-- Initialize Quill editor -->
<script>
  var quill = new Quill('#editor', {
    theme: 'snow'
  });
</script>
Where there is content editor

Code: Select all

<div id="editor">
  <p>Hello World!</p>
  <p>Some initial <strong>bold</strong> text</p>
  <p><br></p>
</div>
Which I do not understand where to cram into the body of the template

This code works, but it is crooked if it is inserted as is

The question is how to insert so that the editor works on the editing panel, and not separately from it?

There is another template template - Bubble

Code: Select all

<!-- Add the theme's stylesheet -->
<link rel="stylesheet" href="//cdn.quilljs.com/1.2.6/quill.bubble.css">

<script src="//cdn.quilljs.com/1.2.6/quill.js"></script>
<script>
var quill = new Quill('#editor', {
  theme: 'bubble'   // Specify theme in configuration
});
</script>
I so understand, here this code it is necessary to interpose there where it should be, only here where?

Code: Select all

<div id="editor">
  <p>Hello World!</p>
  <p>Some initial <strong>bold</strong> text</p>
  <p><br></p>
</div>