|
пре 4 година | ||
---|---|---|---|
.. | |||
api | 删除 | пре 4 година | |
bin | 删除 | пре 4 година | |
docs | 删除 | пре 4 година | |
lib | 删除 | пре 4 година | |
man | 删除 | пре 4 година | |
src | 删除 | пре 4 година | |
.bower.json | пре 4 година | ||
LICENSE.md | пре 4 година | ||
Makefile | пре 4 година | ||
README.md | пре 4 година | ||
SECURITY.md | пре 4 година | ||
bower.json | пре 4 година | ||
build-docs.js | пре 4 година | ||
component.json | пре 4 година | ||
index.js | пре 4 година | ||
jasmine.json | пре 4 година | ||
marked.min.js | пре 4 година | ||
package-lock.json | пре 4 година | ||
package.json | пре 4 година | ||
release.config.js | пре 4 година | ||
rollup.config.esm.js | пре 4 година | ||
rollup.config.js | пре 4 година | ||
vercel.json | пре 4 година |
Checkout the demo page to see marked in action ⛹️
Our documentation pages are also rendered using marked 💯
Also read about:
CLI: npm install -g marked
In-browser: npm install marked
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>
Copyright (c) 2011-2018, Christopher Jeffrey. (MIT License)