contentco / quill-emoji

Quill module toolbar extension for emoji
275 stars 165 forks source link

Is this abandoned? #182

Open aldenquimby opened 2 months ago

aldenquimby commented 2 months ago

Hello!

I proposed a minor fix almost 6 months ago (long enough that GH images have expired) and have not received any response: #181

Is this project / repository now abandoned?

ryy197340 commented 2 months ago

I think so. The latest updates have been committed 3 years ago.

aldenquimby commented 1 month ago

My company is moving off this to https://github.com/missive/emoji-mart as part of the Quill 2.0 upgrade

dllsystem commented 1 month ago

I'm using this one and it works very well: https://github.com/xingw-z/quill2-emoji

import * as Emoji from "quill2-emoji";
import 'quill2-emoji/dist/style.css';
Quill.register("modules/emoji", Emoji);

new Quill('#editor', {
  modules: { 
    toolbar: ['bold', 'italic', 'strike', 'emoji', 'clean'],
    'emoji-toolbar': true,
  },
  theme: 'snow'
});