Security News
Bun 1.2 Released with 90% Node.js Compatibility and Built-in S3 Object Support
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
docute-emojify
Advanced tools
Docute plugin for transforming emoji aliases within Markdown.
Get the UMD build and place it before config.js
inside your index.html
file:
<script src="https://unpkg.com/docute-emojify"></script>
Then, configure the plugin within config.js
.
self.$config = {
plugins: [
docuteEmojify(),
],
};
This plugin requires Docute >=2.9.
Emoji aliases will be replaced with their respective Unicode characters within your Markdown documents. For instance,
This is **Markdown** with :100: emoji support :ok_hand:
will render as
This is Markdown with 💯 emoji support 👌
All emoji aliases are scraped from the gemoji repository.
You can add additional aliases for existing emoji by providing an aliases
object when you configure the plugin.
docuteEmojify({
aliases: {
100: 'hundo',
thinking: [
'thunking',
'thonk',
],
},
});
This will replace :hundo:
with 💯 and :thunking:
or :thonk:
with 🤔.
Aliases may be blacklisted by providing an array of aliases as the blacklist
option.
docuteEmojify({
blacklist: [
'100',
'+1',
],
});
This will make :100:
and :+1:
render as typed rather than as an emoji character.
[0.1.2] - 2017-03-11
FAQs
Docute plugin for transforming emoji aliases within Markdown.
The npm package docute-emojify receives a total of 87 weekly downloads. As such, docute-emojify popularity was classified as not popular.
We found that docute-emojify demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
Security News
Biden's executive order pushes for AI-driven cybersecurity, software supply chain transparency, and stronger protections for federal and open source systems.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.