We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is there any support to parse json to html for emoji nodes? Currently it just strips the emoji.
The text was updated successfully, but these errors were encountered:
Here's a work around I came up with for my need...but would be nice if the library included something similar. I used this library for reference https://github.com/elvanto/litemoji/tree/master
$editor->descendants(function (&$node) { // Skip if not emoji if ($node->type !== 'emoji') { return; } // Change node to text and convert emoji shortcode $node->type = 'text'; $node->text = LitEmoji::encodeUnicode(':'.$node->attrs->name.':'); });
Alternatively, one could extend the Node class similar to the Mention extension included in the Tiptap library for emojis.
Sorry, something went wrong.
No branches or pull requests
Is there any support to parse json to html for emoji nodes? Currently it just strips the emoji.
The text was updated successfully, but these errors were encountered: