|
|
il y a 6 ans | |
|---|---|---|
| .. | ||
| bin | il y a 6 ans | |
| lib | il y a 6 ans | |
| man | il y a 6 ans | |
| www | il y a 6 ans | |
| .editorconfig | il y a 6 ans | |
| .eslintrc.json | il y a 6 ans | |
| .travis.yml | il y a 6 ans | |
| LICENSE.md | il y a 6 ans | |
| Makefile | il y a 6 ans | |
| README.md | il y a 6 ans | |
| bower.json | il y a 6 ans | |
| component.json | il y a 6 ans | |
| index.js | il y a 6 ans | |
| jasmine.json | il y a 6 ans | |
| marked.min.js | il y a 6 ans | |
| package.json | il y a 6 ans | |
Marked is
CLI: npm install -g marked
In-browser: npm install marked --save
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>
<script src="https://cdn.jsdelivr.net/npm/marked/marked.min.js"></script>
</head>
<body>
<div id="content"></div>
<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)