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: about 1 month 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 (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-06-18T11:30:51.000Z (almost 8 years ago)
- Last Synced: 2025-10-22T17:03:25.861Z (7 months ago)
- Topics: autolink, email, markdown, markdown-it, markdown-it-plugin, obfuscation
- Language: JavaScript
- Homepage:
- Size: 27.3 KB
- Stars: 0
- Watchers: 1
- 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: `homer.j.simpson@example.com`
## 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.