New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

md.js

Package Overview
Dependencies
Maintainers
1
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

md.js

a lightweight markdown parser

  • 0.2.1
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

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.1.2/md.min.js></script>
npm
npm install md.js --save
Useage
md('# Heading...');

Examples

demo

Keywords

FAQs

Package last updated on 21 Nov 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc