A Showdown extension for replacing emoji codes with images.
npm install showdown-emoji 
> A Showdown extension for replacing emoji codes with images.
This package uses GitHub Emoji APIs to display the emojis in Showdown HTML outputs. :tada:
``shUsing npm
npm install --save showdown-emoji
:clipboard: Example
`js
const showdown = require('showdown')
, showdownEmoji = require("showdown-emoji")
;// After requiring the module, use it as extension
let converter = new showdown.Converter({
extensions: [showdownEmoji]
});
// Now you can Emoji code blocks
let html = converter.makeHtml("Hello World! :heart:");
console.log(html);
//
Hello World! 
`:question: Get Help
There are few ways to get help:
1. Please post questions on Stack Overflow. You can open issues with questions, as long you add a link to your Stack Overflow question.
2. For bug reports and feature requests, open issues. :bug:
:memo: Documentation
$3
Replace the :emojis: in the text with images.#### Params
- String
emojiDirPath: The public path to the emoji directory containing the emoji images. (default: "/emojis")#### Return
- Array The configuration used by Showdown.
:yum: How to contribute
Have an idea? Found a bug? See [how to contribute][contributing].
:dizzy: Where is this library used?
If you are using this library in one of your projects, add it in this list. :sparkles: -
mdpdf
- bloggify-emoji
- docbook
- @penciljs/core`[MIT][license] © [Bloggify][website]
[license]: /LICENSE
[website]: https://bloggify.org
[contributing]: /CONTRIBUTING.md
[docs]: /DOCUMENTATION.md