-
Notifications
You must be signed in to change notification settings - Fork 0
Description
The options config allows the user to specify emojis to be used in the change log. However, these are short code references, which is ok, but when generating the change log, it should convert each short code reference in the generated change log to the code point. This is required because some external readers (such as gitbook) do not understand the short codes, they only understand the actual glyph that you can manually type out or the unicode code point.
Instead of convert each 1 on the fly, we could have a final step in our generation process that just invokes the emoji conversion utility to replace all short code in a single go. This is probably the easier and most constrained solution to this issue.
And actually, this should be optional, so provide a new switch parameter on the change log command.
- requires this feature to be implemented: Add an emoji translator command Loopz#171