Description
A markdown parser and compiler. Built for speed.
marked alternatives and similar modules
Based on the "Parsing" category.
Alternatively, view marked alternatives based on common mentions on social networks and blogs.
-
markdown-it
A very fast markdown parser with 100% CommonMark support, extensions and syntax plugins. -
Awesome phonenumber parser
Google's libphonenumber pre-compiled with the closure compiler -
Stylecow
Parse, manipulate and convert modern CSS to make it compatible with all browsers. Extensible with plugins. -
docx-to-pdf-on-AWS-Lambda
Microsoft Word doc/docx to PDF conversion on AWS Lambda using Node.js
Get performance insights in less than 4 minutes
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest. Visit our partner's website for more details.
Do you think we are missing an alternative of marked or a related project?
README
Marked
- โก built for speed
- โฌ๏ธ low-level compiler for parsing markdown without caching or blocking for long periods of time
- โ๏ธ light-weight while implementing all markdown features from the supported flavors & specifications
- ๐ works in a browser, on a server, or from a command line interface (CLI)
Demo
Checkout the demo page to see marked in action โน๏ธ
Docs
Our documentation pages are also rendered using marked ๐ฏ
Also read about:
Installation
CLI: npm install -g marked
In-browser: npm install marked
Usage
Warning: ๐จ Marked does not sanitize the output HTML. Please use a sanitize library, like DOMPurify (recommended), sanitize-html or insane on the output HTML! ๐จ
CLI
$ marked -o hello.html
hello world
^D
$ cat hello.html
<p>hello world</p>
Browser
<!doctype html>
<html>
<head>
<meta charset="utf-8"/>
<title>Marked in the browser</title>
</head>
<body>
<div id="content"></div>
<script src="https://cdn.jsdelivr.net/npm/marked/marked.min.js"></script>
<script>
document.getElementById('content').innerHTML =
marked('# Marked in the browser\n\nRendered by **marked**.');
</script>
</body>
</html>
License
Copyright (c) 2011-2018, Christopher Jeffrey. (MIT License)
*Note that all licence references and agreements mentioned in the marked README section above
are relevant to that project's source code only.