- ~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.
- Edge
- IE 8+
- Chrome
- Firefox
- Safari
<script src=md.min.js></script>
<script src=https://unpkg.com/md.js@0.2.6/md.min.js></script>
npm install md.js --save
md('# Heading...');