May I know the capability of the latest redmine system on Emoji icons support?
Below is the list of emoji icons I would like to request support for in Redmine.
At present, all these icons display properly in the preview, but submitting them results in an error exception.
Replies (4)
RE: May I know the capability of the latest redmine system on Emoji icons support?
-
Added by Sam Soong 7 days ago
Alternatively, what configuration or plugin can I use to enable full Markdown emoji support in Redmine?
RE: May I know the capability of the latest redmine system on Emoji icons support?
-
Added by Sam Soong 7 days ago
Currently, the following four icons have been verified to be supported correctly.
No. | Emoji | 说明 | Notes |
---|---|---|---|
1 | ✍ | 要点 | Keynotes |
2 | ✅ | 任务列表已完成任务、确认事项 | Tasks Completed |
3 | ⚠️ | 警告、注意 | Warnings |
4 | ❌ | 严禁 | Forbidden |
RE: May I know the capability of the latest redmine system on Emoji icons support?
-
Added by Holger Just 6 days ago
Redmine does not artificially restrict the the use of emojis in itself.
However, depending on your database and its configuration, it may restrict the characters which can be stored there. In general, emojis are just regular unicode characters. However they tend to be stored using 4 bytes. Some older versions of MySQL / MariaDB however defaulted to a character mode which only allowed unicode characters up to three bytes. MySQL calls this collation utf8mb3
or by its deprecated alias utf8
. To be able to use 4-byte characters including most emojis, you have to update your database to use a utf8mb4
collation.
See the following ressources for more details and possible ways to fix this:
RE: May I know the capability of the latest redmine system on Emoji icons support?
-
Added by Sam Soong 5 days ago
Thank you very much for your support.
The issue with the transparent solution for Redmine 4.1.0 has been clearly identified.
I have a question: Why hasn't this website implemented the feature for utf8mb4 support yet?