New Upstream Snapshot - golang-github-yuin-goldmark-emoji

Ready changes

Summary

Merged new upstream version: 1.0.1+git20210607.1.0487583 (was: 1.0.1).

Resulting package

Built on 2022-10-28T01:10 (took 9m5s)

The resulting binary packages can be installed (if you have the apt repository enabled) by running one of:

apt install -t fresh-snapshots golang-github-yuin-goldmark-emoji-dev

Lintian Result

Diff

diff --git a/_tools/gen-definitions.go b/_tools/gen-definitions.go
index 95a79e3..42d30ad 100644
--- a/_tools/gen-definitions.go
+++ b/_tools/gen-definitions.go
@@ -9,7 +9,7 @@ import (
 	"strings"
 )
 
-const template = `// This file was generated by _tools/gen-deifinition.go. DO NOT EDIT.
+const template = `// This file was generated by _tools/gen-definitions.go. DO NOT EDIT.
 
 package definition
 import "sync"
@@ -64,8 +64,8 @@ func genGithub() {
 	outPath := outBaseDir + "github.go"
 
 	bs := getURL("https://api.github.com/emojis")
-	var ghnames map[string]string
-	abortIfError(json.Unmarshal(bs, &ghnames))
+	var ghNames map[string]string
+	abortIfError(json.Unmarshal(bs, &ghNames))
 
 	bs = getURL("https://raw.githubusercontent.com/github/gemoji/master/db/emoji.json")
 	var list []map[string]interface{}
@@ -87,20 +87,19 @@ func genGithub() {
 
 	buf := []string{}
 	for _, emoji := range list {
-		names := getShortNames(emoji)
-		name := ""
-		for _, n := range names {
-			if _, ok := ghnames[n]; ok {
-				name = n
-				break
+		var names []string
+		for _, n := range getShortNames(emoji) {
+			if _, ok := ghNames[n]; len(n) > 0 && ok {
+				names = append(names, fmt.Sprintf(`"%s"`, n))
 			}
 		}
-		if len(name) == 0 {
+		if len(names) == 0 {
 			continue
 		}
-		desc := getDescription(emoji)
 
-		buf = append(buf, fmt.Sprintf(`NewEmoji("%s", %#v, "%s")`, desc, []rune(getUnicode(emoji)), name))
+		desc := getDescription(emoji)
+		uc := []rune(getUnicode(emoji))
+		buf = append(buf, fmt.Sprintf(`NewEmoji("%s", %#v, %s)`, desc, uc, strings.Join(names, ", ")))
 	}
 
 	f, err := os.Create(outPath)
diff --git a/debian/changelog b/debian/changelog
index 32ab6e2..3f7458c 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+golang-github-yuin-goldmark-emoji (1.0.1+git20210607.1.0487583-1) UNRELEASED; urgency=low
+
+  * New upstream snapshot.
+
+ -- Debian Janitor <janitor@jelmer.uk>  Fri, 28 Oct 2022 01:02:17 -0000
+
 golang-github-yuin-goldmark-emoji (1.0.1-2) unstable; urgency=medium
 
   * Source-only upload for migration to testing
diff --git a/definition/definition.go b/definition/definition.go
index c694a29..f5d6298 100644
--- a/definition/definition.go
+++ b/definition/definition.go
@@ -15,9 +15,9 @@ type Emoji struct {
 // NewEmoji returns a new Emoji.
 func NewEmoji(name string, unicode []rune, shortNames ...string) Emoji {
 	if len(shortNames) == 0 {
-		panic("Emoji must have at leat 1 short name.")
+		panic("Emoji must have at least 1 short name.")
 	}
-	if unicode == nil || len(unicode) == 0 {
+	if len(unicode) == 0 {
 		unicode = []rune{0xFFFD}
 	}
 	return Emoji{
@@ -57,7 +57,7 @@ func NewEmojis(es ...Emoji) Emojis {
 		m:        map[string]*Emoji{},
 		children: []Emojis{},
 	}
-	for i, _ := range es {
+	for i := range es {
 		emoji := &m.list[i]
 		for _, s := range emoji.ShortNames {
 			m.m[s] = emoji
diff --git a/definition/github.go b/definition/github.go
index ff180b5..3f6101e 100644
--- a/definition/github.go
+++ b/definition/github.go
@@ -1,4 +1,4 @@
-// This file was generated by _tools/gen-deifinition.go. DO NOT EDIT.
+// This file was generated by _tools/gen-definitions.go. DO NOT EDIT.
 
 package definition
 import "sync"
@@ -13,7 +13,7 @@ func Github(opts ...EmojisOption) Emojis {
 			NewEmoji("grinning face with big eyes", []int32{128515}, "smiley"),
 			NewEmoji("grinning face with smiling eyes", []int32{128516}, "smile"),
 			NewEmoji("beaming face with smiling eyes", []int32{128513}, "grin"),
-			NewEmoji("grinning squinting face", []int32{128518}, "laughing"),
+			NewEmoji("grinning squinting face", []int32{128518}, "laughing", "satisfied"),
 			NewEmoji("grinning face with sweat", []int32{128517}, "sweat_smile"),
 			NewEmoji("rolling on the floor laughing", []int32{129315}, "rofl"),
 			NewEmoji("face with tears of joy", []int32{128514}, "joy"),
@@ -96,14 +96,14 @@ func Github(opts ...EmojisOption) Emojis {
 			NewEmoji("tired face", []int32{128555}, "tired_face"),
 			NewEmoji("yawning face", []int32{129393}, "yawning_face"),
 			NewEmoji("face with steam from nose", []int32{128548}, "triumph"),
-			NewEmoji("pouting face", []int32{128545}, "rage"),
+			NewEmoji("pouting face", []int32{128545}, "rage", "pout"),
 			NewEmoji("angry face", []int32{128544}, "angry"),
 			NewEmoji("face with symbols on mouth", []int32{129324}, "cursing_face"),
 			NewEmoji("smiling face with horns", []int32{128520}, "smiling_imp"),
 			NewEmoji("angry face with horns", []int32{128127}, "imp"),
 			NewEmoji("skull", []int32{128128}, "skull"),
 			NewEmoji("skull and crossbones", []int32{9760, 65039}, "skull_and_crossbones"),
-			NewEmoji("pile of poo", []int32{128169}, "hankey"),
+			NewEmoji("pile of poo", []int32{128169}, "hankey", "poop", "shit"),
 			NewEmoji("clown face", []int32{129313}, "clown_face"),
 			NewEmoji("ogre", []int32{128121}, "japanese_ogre"),
 			NewEmoji("goblin", []int32{128122}, "japanese_goblin"),
@@ -146,7 +146,7 @@ func Github(opts ...EmojisOption) Emojis {
 			NewEmoji("white heart", []int32{129293}, "white_heart"),
 			NewEmoji("hundred points", []int32{128175}, "100"),
 			NewEmoji("anger symbol", []int32{128162}, "anger"),
-			NewEmoji("collision", []int32{128165}, "boom"),
+			NewEmoji("collision", []int32{128165}, "boom", "collision"),
 			NewEmoji("dizzy", []int32{128171}, "dizzy"),
 			NewEmoji("sweat droplets", []int32{128166}, "sweat_drops"),
 			NewEmoji("dashing away", []int32{128168}, "dash"),
@@ -161,7 +161,7 @@ func Github(opts ...EmojisOption) Emojis {
 			NewEmoji("waving hand", []int32{128075}, "wave"),
 			NewEmoji("raised back of hand", []int32{129306}, "raised_back_of_hand"),
 			NewEmoji("hand with fingers splayed", []int32{128400, 65039}, "raised_hand_with_fingers_splayed"),
-			NewEmoji("raised hand", []int32{9995}, "hand"),
+			NewEmoji("raised hand", []int32{9995}, "hand", "raised_hand"),
 			NewEmoji("vulcan salute", []int32{128406}, "vulcan_salute"),
 			NewEmoji("OK hand", []int32{128076}, "ok_hand"),
 			NewEmoji("pinching hand", []int32{129295}, "pinching_hand"),
@@ -173,13 +173,13 @@ func Github(opts ...EmojisOption) Emojis {
 			NewEmoji("backhand index pointing left", []int32{128072}, "point_left"),
 			NewEmoji("backhand index pointing right", []int32{128073}, "point_right"),
 			NewEmoji("backhand index pointing up", []int32{128070}, "point_up_2"),
-			NewEmoji("middle finger", []int32{128405}, "middle_finger"),
+			NewEmoji("middle finger", []int32{128405}, "middle_finger", "fu"),
 			NewEmoji("backhand index pointing down", []int32{128071}, "point_down"),
 			NewEmoji("index pointing up", []int32{9757, 65039}, "point_up"),
-			NewEmoji("thumbs up", []int32{128077}, "+1"),
-			NewEmoji("thumbs down", []int32{128078}, "-1"),
-			NewEmoji("raised fist", []int32{9994}, "fist_raised"),
-			NewEmoji("oncoming fist", []int32{128074}, "fist_oncoming"),
+			NewEmoji("thumbs up", []int32{128077}, "+1", "thumbsup"),
+			NewEmoji("thumbs down", []int32{128078}, "-1", "thumbsdown"),
+			NewEmoji("raised fist", []int32{9994}, "fist_raised", "fist"),
+			NewEmoji("oncoming fist", []int32{128074}, "fist_oncoming", "facepunch", "punch"),
 			NewEmoji("left-facing fist", []int32{129307}, "fist_left"),
 			NewEmoji("right-facing fist", []int32{129308}, "fist_right"),
 			NewEmoji("clapping hands", []int32{128079}, "clap"),
@@ -227,7 +227,7 @@ func Github(opts ...EmojisOption) Emojis {
 			NewEmoji("person: white hair", []int32{129489, 8205, 129459}, "person_white_hair"),
 			NewEmoji("woman: bald", []int32{128105, 8205, 129458}, "bald_woman"),
 			NewEmoji("person: bald", []int32{129489, 8205, 129458}, "person_bald"),
-			NewEmoji("woman: blond hair", []int32{128113, 8205, 9792, 65039}, "blond_haired_woman"),
+			NewEmoji("woman: blond hair", []int32{128113, 8205, 9792, 65039}, "blond_haired_woman", "blonde_woman"),
 			NewEmoji("man: blond hair", []int32{128113, 8205, 9794, 65039}, "blond_haired_man"),
 			NewEmoji("older person", []int32{129491}, "older_adult"),
 			NewEmoji("old man", []int32{128116}, "older_man"),
@@ -239,14 +239,14 @@ func Github(opts ...EmojisOption) Emojis {
 			NewEmoji("man pouting", []int32{128590, 8205, 9794, 65039}, "pouting_man"),
 			NewEmoji("woman pouting", []int32{128590, 8205, 9792, 65039}, "pouting_woman"),
 			NewEmoji("person gesturing NO", []int32{128581}, "no_good"),
-			NewEmoji("man gesturing NO", []int32{128581, 8205, 9794, 65039}, "no_good_man"),
-			NewEmoji("woman gesturing NO", []int32{128581, 8205, 9792, 65039}, "no_good_woman"),
+			NewEmoji("man gesturing NO", []int32{128581, 8205, 9794, 65039}, "no_good_man", "ng_man"),
+			NewEmoji("woman gesturing NO", []int32{128581, 8205, 9792, 65039}, "no_good_woman", "ng_woman"),
 			NewEmoji("person gesturing OK", []int32{128582}, "ok_person"),
 			NewEmoji("man gesturing OK", []int32{128582, 8205, 9794, 65039}, "ok_man"),
 			NewEmoji("woman gesturing OK", []int32{128582, 8205, 9792, 65039}, "ok_woman"),
-			NewEmoji("person tipping hand", []int32{128129}, "tipping_hand_person"),
-			NewEmoji("man tipping hand", []int32{128129, 8205, 9794, 65039}, "tipping_hand_man"),
-			NewEmoji("woman tipping hand", []int32{128129, 8205, 9792, 65039}, "tipping_hand_woman"),
+			NewEmoji("person tipping hand", []int32{128129}, "tipping_hand_person", "information_desk_person"),
+			NewEmoji("man tipping hand", []int32{128129, 8205, 9794, 65039}, "tipping_hand_man", "sassy_man"),
+			NewEmoji("woman tipping hand", []int32{128129, 8205, 9792, 65039}, "tipping_hand_woman", "sassy_woman"),
 			NewEmoji("person raising hand", []int32{128587}, "raising_hand"),
 			NewEmoji("man raising hand", []int32{128587, 8205, 9794, 65039}, "raising_hand_man"),
 			NewEmoji("woman raising hand", []int32{128587, 8205, 9792, 65039}, "raising_hand_woman"),
@@ -310,7 +310,7 @@ func Github(opts ...EmojisOption) Emojis {
 			NewEmoji("firefighter", []int32{129489, 8205, 128658}, "firefighter"),
 			NewEmoji("man firefighter", []int32{128104, 8205, 128658}, "man_firefighter"),
 			NewEmoji("woman firefighter", []int32{128105, 8205, 128658}, "woman_firefighter"),
-			NewEmoji("police officer", []int32{128110}, "police_officer"),
+			NewEmoji("police officer", []int32{128110}, "police_officer", "cop"),
 			NewEmoji("man police officer", []int32{128110, 8205, 9794, 65039}, "policeman"),
 			NewEmoji("woman police officer", []int32{128110, 8205, 9792, 65039}, "policewoman"),
 			NewEmoji("detective", []int32{128373, 65039}, "detective"),
@@ -387,10 +387,10 @@ func Github(opts ...EmojisOption) Emojis {
 			NewEmoji("person in manual wheelchair", []int32{129489, 8205, 129469}, "person_in_manual_wheelchair"),
 			NewEmoji("man in manual wheelchair", []int32{128104, 8205, 129469}, "man_in_manual_wheelchair"),
 			NewEmoji("woman in manual wheelchair", []int32{128105, 8205, 129469}, "woman_in_manual_wheelchair"),
-			NewEmoji("person running", []int32{127939}, "runner"),
+			NewEmoji("person running", []int32{127939}, "runner", "running"),
 			NewEmoji("man running", []int32{127939, 8205, 9794, 65039}, "running_man"),
 			NewEmoji("woman running", []int32{127939, 8205, 9792, 65039}, "running_woman"),
-			NewEmoji("woman dancing", []int32{128131}, "woman_dancing"),
+			NewEmoji("woman dancing", []int32{128131}, "woman_dancing", "dancer"),
 			NewEmoji("man dancing", []int32{128378}, "man_dancing"),
 			NewEmoji("person in suit levitating", []int32{128372, 65039}, "business_suit_levitating"),
 			NewEmoji("people with bunny ears", []int32{128111}, "dancers"),
@@ -419,8 +419,8 @@ func Github(opts ...EmojisOption) Emojis {
 			NewEmoji("man swimming", []int32{127946, 8205, 9794, 65039}, "swimming_man"),
 			NewEmoji("woman swimming", []int32{127946, 8205, 9792, 65039}, "swimming_woman"),
 			NewEmoji("person bouncing ball", []int32{9977, 65039}, "bouncing_ball_person"),
-			NewEmoji("man bouncing ball", []int32{9977, 65039, 8205, 9794, 65039}, "bouncing_ball_man"),
-			NewEmoji("woman bouncing ball", []int32{9977, 65039, 8205, 9792, 65039}, "bouncing_ball_woman"),
+			NewEmoji("man bouncing ball", []int32{9977, 65039, 8205, 9794, 65039}, "bouncing_ball_man", "basketball_man"),
+			NewEmoji("woman bouncing ball", []int32{9977, 65039, 8205, 9792, 65039}, "bouncing_ball_woman", "basketball_woman"),
 			NewEmoji("person lifting weights", []int32{127947, 65039}, "weight_lifting"),
 			NewEmoji("man lifting weights", []int32{127947, 65039, 8205, 9794, 65039}, "weight_lifting_man"),
 			NewEmoji("woman lifting weights", []int32{127947, 65039, 8205, 9792, 65039}, "weight_lifting_woman"),
@@ -550,7 +550,7 @@ func Github(opts ...EmojisOption) Emojis {
 			NewEmoji("skunk", []int32{129448}, "skunk"),
 			NewEmoji("kangaroo", []int32{129432}, "kangaroo"),
 			NewEmoji("badger", []int32{129441}, "badger"),
-			NewEmoji("paw prints", []int32{128062}, "feet"),
+			NewEmoji("paw prints", []int32{128062}, "feet", "paw_prints"),
 			NewEmoji("turkey", []int32{129411}, "turkey"),
 			NewEmoji("chicken", []int32{128020}, "chicken"),
 			NewEmoji("rooster", []int32{128019}, "rooster"),
@@ -578,7 +578,7 @@ func Github(opts ...EmojisOption) Emojis {
 			NewEmoji("T-Rex", []int32{129430}, "t-rex"),
 			NewEmoji("spouting whale", []int32{128051}, "whale"),
 			NewEmoji("whale", []int32{128011}, "whale2"),
-			NewEmoji("dolphin", []int32{128044}, "dolphin"),
+			NewEmoji("dolphin", []int32{128044}, "dolphin", "flipper"),
 			NewEmoji("fish", []int32{128031}, "fish"),
 			NewEmoji("tropical fish", []int32{128032}, "tropical_fish"),
 			NewEmoji("blowfish", []int32{128033}, "blowfish"),
@@ -589,7 +589,7 @@ func Github(opts ...EmojisOption) Emojis {
 			NewEmoji("butterfly", []int32{129419}, "butterfly"),
 			NewEmoji("bug", []int32{128027}, "bug"),
 			NewEmoji("ant", []int32{128028}, "ant"),
-			NewEmoji("honeybee", []int32{128029}, "bee"),
+			NewEmoji("honeybee", []int32{128029}, "bee", "honeybee"),
 			NewEmoji("beetle", []int32{129714}, "beetle"),
 			NewEmoji("cricket", []int32{129431}, "cricket"),
 			NewEmoji("spider", []int32{128375, 65039}, "spider"),
@@ -622,7 +622,7 @@ func Github(opts ...EmojisOption) Emojis {
 			NewEmoji("grapes", []int32{127815}, "grapes"),
 			NewEmoji("melon", []int32{127816}, "melon"),
 			NewEmoji("watermelon", []int32{127817}, "watermelon"),
-			NewEmoji("tangerine", []int32{127818}, "tangerine"),
+			NewEmoji("tangerine", []int32{127818}, "tangerine", "orange", "mandarin"),
 			NewEmoji("lemon", []int32{127819}, "lemon"),
 			NewEmoji("banana", []int32{127820}, "banana"),
 			NewEmoji("pineapple", []int32{127821}, "pineapple"),
@@ -738,7 +738,7 @@ func Github(opts ...EmojisOption) Emojis {
 			NewEmoji("fork and knife with plate", []int32{127869, 65039}, "plate_with_cutlery"),
 			NewEmoji("fork and knife", []int32{127860}, "fork_and_knife"),
 			NewEmoji("spoon", []int32{129348}, "spoon"),
-			NewEmoji("kitchen knife", []int32{128298}, "hocho"),
+			NewEmoji("kitchen knife", []int32{128298}, "hocho", "knife"),
 			NewEmoji("amphora", []int32{127994}, "amphora"),
 			NewEmoji("globe showing Europe-Africa", []int32{127757}, "earth_africa"),
 			NewEmoji("globe showing Americas", []int32{127758}, "earth_americas"),
@@ -824,7 +824,7 @@ func Github(opts ...EmojisOption) Emojis {
 			NewEmoji("oncoming police car", []int32{128660}, "oncoming_police_car"),
 			NewEmoji("taxi", []int32{128661}, "taxi"),
 			NewEmoji("oncoming taxi", []int32{128662}, "oncoming_taxi"),
-			NewEmoji("automobile", []int32{128663}, "car"),
+			NewEmoji("automobile", []int32{128663}, "car", "red_car"),
 			NewEmoji("oncoming automobile", []int32{128664}, "oncoming_automobile"),
 			NewEmoji("sport utility vehicle", []int32{128665}, "blue_car"),
 			NewEmoji("delivery truck", []int32{128666}, "truck"),
@@ -850,7 +850,7 @@ func Github(opts ...EmojisOption) Emojis {
 			NewEmoji("stop sign", []int32{128721}, "stop_sign"),
 			NewEmoji("construction", []int32{128679}, "construction"),
 			NewEmoji("anchor", []int32{9875}, "anchor"),
-			NewEmoji("sailboat", []int32{9973}, "boat"),
+			NewEmoji("sailboat", []int32{9973}, "boat", "sailboat"),
 			NewEmoji("canoe", []int32{128758}, "canoe"),
 			NewEmoji("speedboat", []int32{128676}, "speedboat"),
 			NewEmoji("passenger ship", []int32{128755, 65039}, "passenger_ship"),
@@ -906,7 +906,7 @@ func Github(opts ...EmojisOption) Emojis {
 			NewEmoji("new moon", []int32{127761}, "new_moon"),
 			NewEmoji("waxing crescent moon", []int32{127762}, "waxing_crescent_moon"),
 			NewEmoji("first quarter moon", []int32{127763}, "first_quarter_moon"),
-			NewEmoji("waxing gibbous moon", []int32{127764}, "moon"),
+			NewEmoji("waxing gibbous moon", []int32{127764}, "moon", "waxing_gibbous_moon"),
 			NewEmoji("full moon", []int32{127765}, "full_moon"),
 			NewEmoji("waning gibbous moon", []int32{127766}, "waning_gibbous_moon"),
 			NewEmoji("last quarter moon", []int32{127767}, "last_quarter_moon"),
@@ -1035,7 +1035,7 @@ func Github(opts ...EmojisOption) Emojis {
 			NewEmoji("lab coat", []int32{129404}, "lab_coat"),
 			NewEmoji("safety vest", []int32{129466}, "safety_vest"),
 			NewEmoji("necktie", []int32{128084}, "necktie"),
-			NewEmoji("t-shirt", []int32{128085}, "shirt"),
+			NewEmoji("t-shirt", []int32{128085}, "shirt", "tshirt"),
 			NewEmoji("jeans", []int32{128086}, "jeans"),
 			NewEmoji("scarf", []int32{129507}, "scarf"),
 			NewEmoji("gloves", []int32{129508}, "gloves"),
@@ -1054,7 +1054,7 @@ func Github(opts ...EmojisOption) Emojis {
 			NewEmoji("clutch bag", []int32{128093}, "pouch"),
 			NewEmoji("shopping bags", []int32{128717, 65039}, "shopping"),
 			NewEmoji("backpack", []int32{127890}, "school_satchel"),
-			NewEmoji("man’s shoe", []int32{128094}, "mans_shoe"),
+			NewEmoji("man’s shoe", []int32{128094}, "mans_shoe", "shoe"),
 			NewEmoji("running shoe", []int32{128095}, "athletic_shoe"),
 			NewEmoji("hiking boot", []int32{129406}, "hiking_boot"),
 			NewEmoji("flat shoe", []int32{129407}, "flat_shoe"),
@@ -1099,7 +1099,7 @@ func Github(opts ...EmojisOption) Emojis {
 			NewEmoji("drum", []int32{129345}, "drum"),
 			NewEmoji("mobile phone", []int32{128241}, "iphone"),
 			NewEmoji("mobile phone with arrow", []int32{128242}, "calling"),
-			NewEmoji("telephone", []int32{9742, 65039}, "phone"),
+			NewEmoji("telephone", []int32{9742, 65039}, "phone", "telephone"),
 			NewEmoji("telephone receiver", []int32{128222}, "telephone_receiver"),
 			NewEmoji("pager", []int32{128223}, "pager"),
 			NewEmoji("fax machine", []int32{128224}, "fax"),
@@ -1130,11 +1130,11 @@ func Github(opts ...EmojisOption) Emojis {
 			NewEmoji("candle", []int32{128367, 65039}, "candle"),
 			NewEmoji("light bulb", []int32{128161}, "bulb"),
 			NewEmoji("flashlight", []int32{128294}, "flashlight"),
-			NewEmoji("red paper lantern", []int32{127982}, "izakaya_lantern"),
+			NewEmoji("red paper lantern", []int32{127982}, "izakaya_lantern", "lantern"),
 			NewEmoji("diya lamp", []int32{129684}, "diya_lamp"),
 			NewEmoji("notebook with decorative cover", []int32{128212}, "notebook_with_decorative_cover"),
 			NewEmoji("closed book", []int32{128213}, "closed_book"),
-			NewEmoji("open book", []int32{128214}, "book"),
+			NewEmoji("open book", []int32{128214}, "book", "open_book"),
 			NewEmoji("green book", []int32{128215}, "green_book"),
 			NewEmoji("blue book", []int32{128216}, "blue_book"),
 			NewEmoji("orange book", []int32{128217}, "orange_book"),
@@ -1158,8 +1158,8 @@ func Github(opts ...EmojisOption) Emojis {
 			NewEmoji("credit card", []int32{128179}, "credit_card"),
 			NewEmoji("receipt", []int32{129534}, "receipt"),
 			NewEmoji("chart increasing with yen", []int32{128185}, "chart"),
-			NewEmoji("envelope", []int32{9993, 65039}, "email"),
-			NewEmoji("e-mail", []int32{128231}, "e-mail"),
+			NewEmoji("envelope", []int32{9993, 65039}, "envelope"),
+			NewEmoji("e-mail", []int32{128231}, "email", "e-mail"),
 			NewEmoji("incoming envelope", []int32{128232}, "incoming_envelope"),
 			NewEmoji("envelope with arrow", []int32{128233}, "envelope_with_arrow"),
 			NewEmoji("outbox tray", []int32{128228}, "outbox_tray"),
@@ -1177,7 +1177,7 @@ func Github(opts ...EmojisOption) Emojis {
 			NewEmoji("pen", []int32{128394, 65039}, "pen"),
 			NewEmoji("paintbrush", []int32{128396, 65039}, "paintbrush"),
 			NewEmoji("crayon", []int32{128397, 65039}, "crayon"),
-			NewEmoji("memo", []int32{128221}, "memo"),
+			NewEmoji("memo", []int32{128221}, "memo", "pencil"),
 			NewEmoji("briefcase", []int32{128188}, "briefcase"),
 			NewEmoji("file folder", []int32{128193}, "file_folder"),
 			NewEmoji("open file folder", []int32{128194}, "open_file_folder"),
@@ -1368,7 +1368,7 @@ func Github(opts ...EmojisOption) Emojis {
 			NewEmoji("question mark", []int32{10067}, "question"),
 			NewEmoji("white question mark", []int32{10068}, "grey_question"),
 			NewEmoji("white exclamation mark", []int32{10069}, "grey_exclamation"),
-			NewEmoji("exclamation mark", []int32{10071}, "exclamation"),
+			NewEmoji("exclamation mark", []int32{10071}, "exclamation", "heavy_exclamation_mark"),
 			NewEmoji("wavy dash", []int32{12336, 65039}, "wavy_dash"),
 			NewEmoji("currency exchange", []int32{128177}, "currency_exchange"),
 			NewEmoji("heavy dollar sign", []int32{128178}, "heavy_dollar_sign"),
@@ -1559,7 +1559,7 @@ func Github(opts ...EmojisOption) Emojis {
 			NewEmoji("flag: Eritrea", []int32{127466, 127479}, "eritrea"),
 			NewEmoji("flag: Spain", []int32{127466, 127480}, "es"),
 			NewEmoji("flag: Ethiopia", []int32{127466, 127481}, "ethiopia"),
-			NewEmoji("flag: European Union", []int32{127466, 127482}, "eu"),
+			NewEmoji("flag: European Union", []int32{127466, 127482}, "eu", "european_union"),
 			NewEmoji("flag: Finland", []int32{127467, 127470}, "finland"),
 			NewEmoji("flag: Fiji", []int32{127467, 127471}, "fiji"),
 			NewEmoji("flag: Falkland Islands", []int32{127467, 127472}, "falkland_islands"),
@@ -1567,7 +1567,7 @@ func Github(opts ...EmojisOption) Emojis {
 			NewEmoji("flag: Faroe Islands", []int32{127467, 127476}, "faroe_islands"),
 			NewEmoji("flag: France", []int32{127467, 127479}, "fr"),
 			NewEmoji("flag: Gabon", []int32{127468, 127462}, "gabon"),
-			NewEmoji("flag: United Kingdom", []int32{127468, 127463}, "gb"),
+			NewEmoji("flag: United Kingdom", []int32{127468, 127463}, "gb", "uk"),
 			NewEmoji("flag: Grenada", []int32{127468, 127465}, "grenada"),
 			NewEmoji("flag: Georgia", []int32{127468, 127466}, "georgia"),
 			NewEmoji("flag: French Guiana", []int32{127468, 127467}, "french_guiana"),
diff --git a/go.mod b/go.mod
index 81db173..13138c0 100644
--- a/go.mod
+++ b/go.mod
@@ -2,4 +2,4 @@ module github.com/yuin/goldmark-emoji
 
 go 1.15
 
-require github.com/yuin/goldmark v1.2.1
+require github.com/yuin/goldmark v1.3.7
diff --git a/go.sum b/go.sum
index d05f234..34d25a8 100644
--- a/go.sum
+++ b/go.sum
@@ -1,2 +1,2 @@
-github.com/yuin/goldmark v1.2.1 h1:ruQGxdhGHe7FWOJPT0mKs5+pD2Xs1Bm/kdGlHO04FmM=
-github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74=
+github.com/yuin/goldmark v1.3.7 h1:NSaHgaeJFCtWXCBkBKXw0rhgMuJ0VoE9FB5mWldcrQ4=
+github.com/yuin/goldmark v1.3.7/go.mod h1:mwnBkeHKe2W/ZEtQ+71ViKU8L12m81fl3OWwC1Zlc8k=

Debdiff

File lists identical (after any substitutions)

No differences were encountered in the control files

More details

Full run details