How to use the tiptap-extensions.Link function in tiptap-extensions

To help you get started, we’ve selected a few tiptap-extensions examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github area17 / twill / frontend / js / components / WysiwygTiptap.vue View on Github external
break
          }
          case 'italic': {
            extensions.push(new Italic())
            break
          }
          case 'strike': {
            extensions.push(new Strike())
            break
          }
          case 'underline': {
            extensions.push(new Underline())
            break
          }
          case 'link': {
            extensions.push(new Link())
            break
          }
          case 'blockquote': {
            extensions.push(new Blockquote())
            break
          }
          case 'bullet': {
            extensions.push(new BulletList())
            break
          }
          case 'ordered': {
            extensions.push(new OrderedList())
            break
          }
          case 'code': {
            extensions.push(new Code())