The Open Source kanban (built with Meteor). Keep variable/table/field names camelCase. For translations, only add Pull Request changes to wekan/i18n/en.i18n.json , other translations are done at https://transifex.com/wekan/wekan only.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
wekan/packages/markdown/marked
Lauri Ojansivu 73e265d8fd Include to Wekan packages directory contents, so that meteor command would build all directly. 6 years ago
..
.github Include to Wekan packages directory contents, so that meteor command would build all directly. 6 years ago
bin Include to Wekan packages directory contents, so that meteor command would build all directly. 6 years ago
docs Include to Wekan packages directory contents, so that meteor command would build all directly. 6 years ago
lib Include to Wekan packages directory contents, so that meteor command would build all directly. 6 years ago
man Include to Wekan packages directory contents, so that meteor command would build all directly. 6 years ago
test Include to Wekan packages directory contents, so that meteor command would build all directly. 6 years ago
.editorconfig Include to Wekan packages directory contents, so that meteor command would build all directly. 6 years ago
.eslintignore Include to Wekan packages directory contents, so that meteor command would build all directly. 6 years ago
.eslintrc.json Include to Wekan packages directory contents, so that meteor command would build all directly. 6 years ago
.gitattributes Include to Wekan packages directory contents, so that meteor command would build all directly. 6 years ago
.gitignore Include to Wekan packages directory contents, so that meteor command would build all directly. 6 years ago
.travis.yml Include to Wekan packages directory contents, so that meteor command would build all directly. 6 years ago
LICENSE.md Include to Wekan packages directory contents, so that meteor command would build all directly. 6 years ago
Makefile Include to Wekan packages directory contents, so that meteor command would build all directly. 6 years ago
README.md Include to Wekan packages directory contents, so that meteor command would build all directly. 6 years ago
bower.json Include to Wekan packages directory contents, so that meteor command would build all directly. 6 years ago
component.json Include to Wekan packages directory contents, so that meteor command would build all directly. 6 years ago
index.js Include to Wekan packages directory contents, so that meteor command would build all directly. 6 years ago
jasmine.json Include to Wekan packages directory contents, so that meteor command would build all directly. 6 years ago
marked.min.js Include to Wekan packages directory contents, so that meteor command would build all directly. 6 years ago
package.json Include to Wekan packages directory contents, so that meteor command would build all directly. 6 years ago

README.md

Marked

npm gzip size install size downloads dep dev dep travis snyk

  • 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 by default 🚨

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)