md.js

0.2.6 • Public • Published

MD.js

  • ~1kb minified+gzipped
  • ~1.5kb minified

npm licence

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 &lt;script&gt;alert(1)&lt;/script&gt; while <a href="javascript:alert('xss')"></a> will be converted to <a href="#javascript&#58;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/md.js@0.2.6/md.min.js></script>

npm

npm install md.js --save

Useage

md('# Heading...');

Examples

demo

Readme

Keywords

Package Sidebar

Install

npm i md.js

Weekly Downloads

94

Version

0.2.6

License

MIT

Last publish

Collaborators

  • thysultan