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.
- Host: GitHub
- URL: https://github.com/ilyaigpetrov/markdown-it-email-obfuscator
- Owner: ilyaigpetrov
- License: gpl-3.0
- Created: 2018-06-11T15:09:39.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-06-18T11:30:51.000Z (about 7 years ago)
- Last Synced: 2024-04-14T15:02:02.129Z (about 1 year ago)
- Topics: autolink, email, markdown, markdown-it, markdown-it-plugin, obfuscation
- Language: JavaScript
- Homepage:
- Size: 27.3 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.