Advertisement
quenerapu

Quill 2.0

Mar 1st, 2025
3
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.65 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.   <meta charset="utf-8">
  5.   <meta name="viewport" content="width=device-width">
  6.   <title>JS Bin</title>
  7.   <!-- https://quilljs.com/docs/formats -->
  8.   <link href="https://cdn.jsdelivr.net/npm/quill@2.0.3/dist/quill.snow.css" rel="stylesheet" />
  9.   <script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/highlight.min.js"></script>
  10.   <script src="https://cdn.jsdelivr.net/npm/quill@2.0.3/dist/quill.js"></script>
  11.   <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/styles/atom-one-dark.min.css"
  12. />
  13. </head>
  14. <body>
  15.  
  16. <div id="toolbar-container">
  17.   <span class="ql-formats">
  18.     <button class="ql-header" value="2"></button>
  19.     <button class="ql-bold"></button>
  20.     <button class="ql-italic"></button>
  21.     <button class="ql-strike"></button>
  22.     <button class="ql-link"></button>
  23.     <button class="ql-script" value="sub"></button>
  24.     <button class="ql-script" value="super"></button>
  25.     <button class="ql-blockquote"></button>
  26.     <button class="ql-code-block"></button>
  27.   </span>
  28.   <span class="ql-formats">
  29.     <select class="ql-align"></select>
  30.     <button class="ql-list" value="ordered"></button>
  31.     <button class="ql-list" value="bullet"></button>
  32.     <button class="ql-indent" value="-1"></button>
  33.     <button class="ql-indent" value="+1"></button>
  34.     <button class="ql-clean"></button>
  35.   </span>
  36. </div>
  37. <div id="editor"></div>
  38.  
  39. <script>
  40.   const quill = new Quill('#editor', {
  41.     theme: 'snow',
  42.     placeholder: 'Compose an epic...',
  43.     modules: {
  44.       toolbar: '#toolbar-container',
  45.       syntax: true,
  46.     },
  47.   });
  48. </script>
  49.  
  50. </body>
  51. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement