The emoji node is an inline node that represents an emoji.
There are three kinds of emoji:
1 2 3emoji(":grinning:") .text("đ");
1 2 3 4 5 6 7 8{ "type": "emoji", "attrs": { "shortName": ":grinning:", "text": "\uD83D\uDE00" } }
1 2 3 4emoji(":awthanks:") .id("atlassian-awthanks") .text(":awthanks:");
1 2 3 4 5 6 7 8 9{ "type": "emoji", "attrs": { "shortName": ":awthanks:", "id": "atlassian-awthanks", "text": ":awthanks:" } }
1 2 3 4 5emoji(":thumbsup::skin-tone-2:") .id("1f44d") .text("đđŊ");
1 2 3 4 5 6 7 8 9{ "type": "emoji", "attrs": { "shortName": ":thumbsup::skin-tone-2:", "id": "1f44d", "text": "\uD83D\uDC4D\uD83C\uDFFD" } }
| Confluence | Jira |
|---|---|
| â | â |
emojilocalId, when present, will typically be a random UUID. This is not enforced by the schema.âŠī¸Rate this page: