md.js
v0.2.6
Published
a lightweight markdown parser
Readme
MD.js
- ~1kb minified+gzipped
- ~1.5kb minified
MD is a lightweight markdown parser with default support for langauge specific code blocks and XSS filtering, for example
// replace . with `
```javascript
var int = 0;
will output the following
```html
<pre><code class="language-javascript">
var int = 0;
</code></pre>XSS attempt <script>alert(1);</script> will be converted to <script>alert(1)</script>
while <a href="javascript:alert('xss')"></a> will be converted to <a href="#javascript:alert('xss')"></a>
and <img onerror="alert(1)"> inline events will be remove and more.
Browser Support
- Edge
- IE 8+
- Chrome
- Firefox
- Safari
Installation
direct download
<script src=md.min.js></script>CDN
<script src=https://unpkg.com/[email protected]/md.min.js></script>npm
npm install md.js --saveUseage
md('# Heading...');