Advertisement
quenerapu

Quill 2.0 con bubble

Mar 1st, 2025
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  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.bubble.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.   <style>
  14.     #editor {margin-top:4em;}
  15.   </style>
  16. </head>
  17. <body>
  18.  
  19.   <div id="editor"></div>
  20.  
  21.   <script>
  22.     const toolbarOptions = ['bold', 'italic', 'strike','code-block'];
  23.     const quill = new Quill('#editor', {
  24.       theme: 'bubble',
  25.       placeholder: 'Compose an epic...',
  26.       modules: {
  27.         toolbar: toolbarOptions,
  28.         syntax: true,
  29.       },
  30.     });
  31.   </script>
  32.  
  33. </body>
  34. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement