Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/edwmurph/escape-markdown
Escape Markdown control characters.
https://github.com/edwmurph/escape-markdown
Last synced: 10 days ago
JSON representation
Escape Markdown control characters.
- Host: GitHub
- URL: https://github.com/edwmurph/escape-markdown
- Owner: edwmurph
- Created: 2016-08-24T20:03:29.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-08-25T15:10:01.000Z (over 8 years ago)
- Last Synced: 2024-12-16T21:44:10.237Z (about 1 month ago)
- Language: JavaScript
- Size: 3.91 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# escape-markdown
Escape Markdown control characters.```javascript
const escape = require('escape-markdown')
escape("< test > 1 + 1 = 2") // => "< test > 1 \\+ 1 = 2"
```