|
vor 3 Tagen | |
---|---|---|
.devcontainer | vor 2 Jahren | |
.github | vor 1 Woche | |
api | vor 6 Monaten | |
bin | vor 1 Monat | |
docs | vor 1 Monat | |
man | vor 1 Jahr | |
src | vor 3 Tagen | |
test | vor 3 Tagen | |
.editorconfig | vor 7 Jahren | |
.gitattributes | vor 1 Monat | |
.gitignore | vor 1 Monat | |
.releaserc.json | vor 3 Jahren | |
CHANGELOG.md | vor 1 Jahr | |
LICENSE.md | vor 4 Jahren | |
README.md | vor 1 Monat | |
SECURITY.md | vor 1 Jahr | |
esbuild.config.js | vor 1 Monat | |
eslint.config.js | vor 1 Monat | |
package-lock.json | vor 3 Tagen | |
package.json | vor 3 Tagen | |
tsconfig-type-test.json | vor 2 Jahren | |
tsconfig.json | vor 2 Jahren | |
vercel.json | vor 5 Jahren |
Checkout the demo page to see marked in action ⛹️
Our documentation pages are also rendered using marked 💯
Also read about:
Node.js: Only current and LTS Node.js versions are supported. End of life Node.js versions may become incompatible with Marked at any point in time.
Browser: Not IE11 :)
CLI:
npm install -g marked
In-browser:
npm install marked
DOMPurify.sanitize(marked.parse(`<img src="x" onerror="alert('not happening')">`));
CLI
# Example with stdin input
$ marked -o hello.html
hello world
^D
$ cat hello.html
<p>hello world</p>
# Print all options
$ marked --help
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/lib/marked.umd.js"></script>
<script>
document.getElementById('content').innerHTML =
marked.parse('# Marked in the browser\n\nRendered by **marked**.');
</script>
</body>
</html>
or import esm module
<script type="module">
import { marked } from "https://cdn.jsdelivr.net/npm/marked/lib/marked.esm.js";
document.getElementById('content').innerHTML =
marked.parse('# Marked in the browser\n\nRendered by **marked**.');
</script>
Copyright (c) 2011-2022, Christopher Jeffrey. (MIT License)