Advertisement
agir

Untitled

Feb 24th, 2020
2,763
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. "data:text/html," &
  2. "<HTML>
  3. <head>
  4. <link rel=\"stylesheet\" href=\"https://cdn.quilljs.com/latest/quill.snow.css\">
  5. <script type=\"text/javascript\" src=\"https://cdn.quilljs.com/latest/quill.min.js\"></script>
  6.  
  7.  
  8. <script type=\"text/javascript\">
  9. var quill = new Quill('#editor-container', {
  10.  modules: {
  11.    toolbar: [
  12.      [{ header: [1, 2, false] }],
  13.      ['bold', 'italic', 'underline', 'strike', 'blockquote'],
  14.      ['image', 'code-block', 'link']
  15.    ]
  16.  },
  17.  placeholder: 'Compose an epic...',
  18.  theme: 'snow'  // or 'bubble'
  19. });
  20. </script>
  21.  
  22.  
  23. <body>
  24. <div id=\"editor-container\">
  25. </div>
  26. </body>
  27. </html>"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement