From d6cecff29bd96c8c84ca9030f40fc3b880a45b94 Mon Sep 17 00:00:00 2001 From: Jan Lelis Date: Wed, 6 Nov 2024 18:07:16 +0100 Subject: [PATCH] Add link to Emoji components --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 106adfa..7d3407d 100644 --- a/README.md +++ b/README.md @@ -79,7 +79,7 @@ Regex | Description | Example Matches | Example Non-Matc `Unicode::Emoji::REGEX_BASIC` | Matches (non-textual) Basic Emoji, but no sequences at all | `😴`, `▢️`, `🏻` | `😴︎`, `β–Ά`, `πŸ›ŒπŸ½`, `πŸ‡΅πŸ‡Ή`, `πŸ‡΅πŸ‡΅`,`2️⃣`, `🏴󠁧󠁒󠁳󠁣󠁴󠁿`, `🏴󠁧󠁒󠁑󠁧󠁒󠁿`, `πŸ€ΎπŸ½β€β™€οΈ`, `πŸ€ΎπŸ½β€β™€`, `πŸŒβ€β™‚οΈ`, `πŸ€ β€πŸ€’`, `1` `Unicode::Emoji::REGEX_TEXT` | Matches only textual singleton Emoji | `😴︎`, `β–Ά` | `😴`, `▢️`, `🏻`, `πŸ›ŒπŸ½`, `πŸ‡΅πŸ‡Ή`, `πŸ‡΅πŸ‡΅`,`2️⃣`, `🏴󠁧󠁒󠁳󠁣󠁴󠁿`, `🏴󠁧󠁒󠁑󠁧󠁒󠁿`, `πŸ€ΎπŸ½β€β™€οΈ`, `πŸ€ΎπŸ½β€β™€`, `πŸŒβ€β™‚οΈ`, `πŸ€ β€πŸ€’`, `1` -Here is a list of all Emoji that can be matched using the two regexes: [character.construction/emoji-vs-text](https://character.construction/emoji-vs-text). The `REGEX_BASIC` regex also matches visual Emoji components (skin tone modifiers and hair components). +Here is a list of all Emoji that can be matched using the two regexes: [character.construction/emoji-vs-text](https://character.construction/emoji-vs-text). The `REGEX_BASIC` regex also matches [visual Emoji components](character.construction/emoji-components) (skin tone modifiers and hair components). While `REGEX_BASIC` is part of the above regexes, `REGEX_TEXT` is only included in the `*_INCLUDE_TEXT` or `*_UQE` variants.