Gathering detailed insights and metrics for remark-gemoji
Gathering detailed insights and metrics for remark-gemoji
Gathering detailed insights and metrics for remark-gemoji
Gathering detailed insights and metrics for remark-gemoji
remark-gemoji-to-emoji
Transform gemoji shortcodes into emoji unicodes
remark-emoji-to-gemoji
Transform emoji unicodes into gemoji shortcodes
gatsby-remark-gemoji-to-image
Convert [Github offcial gemoji](https://github.com/github/gemoji) to image element
gatsby-remark-gemoji-to-emoji
Transform Gemoji shortcodes to Unicode emoji.
npm install remark-gemoji
Typescript
Module System
Node Version
NPM Version
JavaScript (100%)
Total Downloads
4,393,842
Last Day
1,778
Last Week
32,435
Last Month
130,487
Last Year
1,669,024
MIT License
47 Stars
105 Commits
5 Forks
8 Watchers
1 Branches
15 Contributors
Updated on Jun 12, 2025
Minified
Minified + Gzipped
Latest Version
8.0.0
Package Id
remark-gemoji@8.0.0
Unpacked Size
11.65 kB
Size
4.77 kB
File Count
7
NPM Version
9.8.0
Node Version
20.5.1
Published on
Sep 21, 2023
Cumulative downloads
Total Downloads
Last Day
22.3%
1,778
Compared to previous day
Last Week
1.2%
32,435
Compared to previous week
Last Month
-10.5%
130,487
Compared to previous month
Last Year
-7%
1,669,024
Compared to previous year
remark plugin to turn gemoji shortcodes (:+1:
) into emoji (👍
).
This package is a unified (remark) plugin to turn gemoji shortcodes into emoji.
You can use this plugin to match how GitHub turns gemoji (GitHub Emoji) shortcodes into emoji. This plugin does not support other platforms such as Slack and what labels they support.
A different plugin, remark-gfm
, adds support for GFM (GitHub
Flavored Markdown).
GFM is a set of extensions (autolink literals, footnotes, strikethrough, tables,
and tasklists) to markdown that are supported everywhere on GitHub.
Another plugin, remark-frontmatter
, adds support for
YAML frontmatter.
GitHub supports frontmatter for files in Gists and repos.
This package is ESM only. In Node.js (version 16+), install with npm:
1npm install remark-gemoji
In Deno with esm.sh
:
1import remarkGemoji from 'https://esm.sh/remark-gemoji@8'
In browsers with esm.sh
:
1<script type="module"> 2 import remarkGemoji from 'https://esm.sh/remark-gemoji@8?bundle' 3</script>
Say we have the following file example.md
:
1Look, the moon :new_moon_with_face: 2 3Here’s a family :family_man_man_boy_boy: 4 5Слава Україні! :ukraine:
…and a module example.js
:
1import remarkGemoji from 'remark-gemoji' 2import remarkParse from 'remark-parse' 3import remarkStringify from 'remark-stringify' 4import {read} from 'to-vfile' 5import {unified} from 'unified' 6 7const file = await unified() 8 .use(remarkParse) 9 .use(remarkGemoji) 10 .use(remarkStringify) 11 .process(await read('example.md')) 12 13console.log(String(file))
…then running node example.js
yields:
1Look, the moon 🌚 2 3Here’s a family 👨👨👦👦 4 5Слава Україні! 🇺🇦
This package exports no identifiers.
The default export is remarkGemoji
.
unified().use(remarkGemoji)
Turn gemoji shortcodes (:+1:
) into emoji (👍
).
There are no parameters.
Transform (Transformer
).
This plugin looks for the regular expression /:(\+1|[-\w]+):/g
in text in
markdown (excluding code and such).
If the value between the two colons matches a know gemoji shortcode, then its
replaced by the corresponding emoji.
In EBNF, the grammar looks as follows:
1[object Object], ::= ':' ('+' '1' | ,[object Object],+) ':' 2,[object Object], ::= '-' | '_' | ,[object Object], | ,[object Object], 3,[object Object], ::= ,[object Object], | ,[object Object], 4,[object Object], ::= 'a' | 'b' | 'c' | 'd' | 'e' | 'f' | 'g' | 'h' | 'i' | 'j' | 'k' | 'l' | 'm' | 'n' | 'o' | 'p' | 'q' | 'r' | 's' | 't' | 'u' | 'v' | 'w' | 'x' | 'y' | 'z' 5,[object Object], ::= 'A' | 'B' | 'C' | 'D' | 'E' | 'F' | 'G' | 'H' | 'I' | 'J' | 'K' | 'L' | 'M' | 'N' | 'O' | 'P' | 'Q' | 'R' | 'S' | 'T' | 'U' | 'V' | 'W' | 'X' | 'Y' | 'Z' 6,[object Object], ::= '0' | '1' | '2' | '3' | '4' | '5' | '6' | '7' | '8' | '9'
This package is fully typed with TypeScript. It exports no additional types.
Projects maintained by the unified collective are compatible with maintained versions of Node.js.
When we cut a new major release, we drop support for unmaintained versions of
Node.
This means we try to keep the current release line, remark-gemoji@^8
,
compatible with Node.js 16.
This plugin works with unified
version 3+ and remark
version 4+.
Use of remark-gemoji
does not involve rehype (hast) or user
content so there are no openings for cross-site scripting (XSS)
attacks.
remark-gfm
— support GFM (autolink literals, footnotes, strikethrough, tables,
tasklists)remark-github
— link references to commits, issues, pull-requests, and users, like on
GitHubremark-breaks
— support hard breaks without needing spaces or escapesremark-frontmatter
— support frontmatter (YAML, TOML, and more)See contributing.md
in remarkjs/.github
for ways
to get started.
See support.md
for ways to get help.
This project has a code of conduct. By interacting with this repository, organization, or community you agree to abide by its terms.
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
no dangerous workflow patterns detected
Reason
0 existing vulnerabilities detected
Reason
license file detected
Details
Reason
security policy file detected
Details
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
Found 2/30 approved changesets -- score normalized to 0
Reason
1 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
project is not fuzzed
Details
Reason
Project has not signed or included provenance with any releases.
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Score
Last Scanned on 2025-06-30
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More