mirror of
https://github.com/carloscuesta/gitmoji.git
synced 2025-12-08 20:14:12 +00:00
Add a new property entity inside of the gitmoji element, that contains the html entity in hexadecimal format for the emoji. Use entity instead of emoji to provide a better browser support. Update schema
1.3 KiB
1.3 KiB
Contributing to gitmoji
Hello!
Thanks for for contributing on gitmoji. Before implementing new features and changes, feel free to submit an issue. We're going to talk here 😜.
If you would like to add a new emoji to gitmoji, fill the provided ISSUE_TEMPLATE when creating an issue and take a look at the contributing section.
How to submit a pull request?
- Fork this repository.
- Create a new branch with the feature name. (Eg: add-emoji-deploy, fix-website-header)
- Make your changes.
- Commit your changes. Don't forget to add a commit title with an emoji and a description.
- Push your changes.
- Submit your pull request.
How to add a gitmoji
- Open the gitmoji.json file located at
src/data/gitmojis.json. - Add your emoji using the following code inside of the
gitmojis array []: - Save the file and create a pull request.
{
"emoji": "",
"entity": "emoji hexadecimal html entity",
"code": ":code:",
"description": "Enter the description for the gitmoji.",
"name": "code (same as code but without ':' replace underscores for dashes _ => - )"
}