An open API service indexing awesome lists of open source software.

https://github.com/ilyaigpetrov/markdown-it-email-obfuscator

Converts autolink with an email to an obfuscated with html entities link.
https://github.com/ilyaigpetrov/markdown-it-email-obfuscator

autolink email markdown markdown-it markdown-it-plugin obfuscation

Last synced: 3 months ago
JSON representation

Converts autolink with an email to an obfuscated with html entities link.

Awesome Lists containing this project

README

        

# Markdown-it Email Obfuscator
## Obfuscation Example

\ → \_obfuscated_\

_obfuscated_ looks like: `[email protected]`

## Install

`npm install --save markdown-it-email-obfuscator`

## Use

```js
'use strict';

const md = require('markdown-it')()
.use(require('markdown-it-email-obfuscator'));

const input = 'AABB';
console.log(md.render(input));
```
## License

[GNU GPL](./LICENSE).
Contact me if you need a diffrent license.