ssbc/marked

Name: marked

Owner: Secure Scuttlebutt Consortium

Description: A markdown parser and compiler. This fork adds SSB-specific features, such as mentions and emojis.

Created: 2015-08-22 14:50:40.0

Updated: 2018-02-28 14:53:25.0

Pushed: 2018-03-13 04:37:34.0

Homepage:

Size: 581

Language: HTML

GitHub Committers

UserMost Recent Commit# Commits

Other Committers

UserEmailMost Recent Commit# Commits

README

marked

A full-featured markdown parser and compiler, written in JavaScript. Built for speed.

NPM version

Install
install marked --save
Usage

Minimal usage:

marked = require('marked');
ole.log(marked('I am using __markdown__.'));
utputs: <p>I am using <strong>markdown</strong>.</p>

Example setting options with default values:

marked = require('marked');
ed.setOptions({
nderer: new marked.Renderer(),
m: true,
bles: true,
eaks: false,
dantic: false,
nitize: true,
artLists: true,
artypants: false


ole.log(marked('I am using __markdown__.'));
Browser
ctype html>
l>
d>
eta charset="utf-8"/>
itle>Marked in the browser</title>
cript src="lib/marked.js"></script>
ad>
y>
iv id="content"></div>
cript>
document.getElementById('content').innerHTML =
  marked('# Marked in browser\n\nRendered by **marked**.');
script>
dy>
ml>
marked(markdownString [,options] [,callback])
markdownString

Type: string

String of markdown source to be compiled.

options

Type: object

Hash of options. Can also be set using the marked.setOptions method as seen above.

callback

Type: function

Function called when the markdownString has been fully parsed when using async highlighting. If the options argument is omitted, this can be used as the second argument.

Options
highlight

Type: function

A function to highlight code blocks. The first example below uses async highlighting with node-pygmentize-bundled, and the second is a synchronous example using highlight.js:

marked = require('marked');

markdownString = '```js\n console.log("hello"); \n```';

sync highlighting with pygmentize-bundled
ed.setOptions({
ghlight: function (code, lang, callback) {
require('pygmentize-bundled')({ lang: lang, format: 'html' }, code, function (err, result) {
  callback(err, result.toString());
});



sing async version of marked
ed(markdownString, function (err, content) {
 (err) throw err;
nsole.log(content);


ynchronous highlighting with highlight.js
ed.setOptions({
ghlight: function (code) {
return require('highlight.js').highlightAuto(code).value;



ole.log(marked(markdownString));
highlight arguments

code

Type: string

The section of code to pass to the highlighter.

lang

Type: string

The programming language specified in the code block.

callback

Type: function

The callback function to call when using an async highlighter.

renderer

Type: object Default: new Renderer()

An object containing functions to render tokens to HTML.

Overriding renderer methods

The renderer option allows you to render tokens in a custom manor. Here is an example of overriding the default heading token rendering by adding an embedded anchor tag like on GitHub:

marked = require('marked');
renderer = new marked.Renderer();

erer.heading = function (text, level) {
r escapedText = text.toLowerCase().replace(/[^\w]+/g, '-');

turn '<h' + level + '><a name="' +
            escapedText +
             '" class="anchor" href="#' +
             escapedText +
             '"><span class="header-link"></span></a>' +
              text + '</h' + level + '>';


ole.log(marked('# heading+', { renderer: renderer }));

This code will output the following HTML:


 name="heading-" class="anchor" href="#heading-">
<span class="header-link"></span>
a>
ading+
>
Block level renderer methods

flags has the following properties:


header: true || false,
align: 'center' || 'left' || 'right'

Inline level renderer methods
gfm

Type: boolean Default: true

Enable GitHub flavored markdown.

tables

Type: boolean Default: true

Enable GFM tables. This option requires the gfm option to be true.

breaks

Type: boolean Default: false

Enable GFM line breaks. This option requires the gfm option to be true.

pedantic

Type: boolean Default: false

Conform to obscure parts of markdown.pl as much as possible. Don't fix any of the original markdown bugs or poor behavior.

sanitize

Type: boolean Default: false

Sanitize the output. Ignore any HTML that has been input.

smartLists

Type: boolean Default: true

Use smarter list behavior than the original markdown. May eventually be default with the old behavior moved into pedantic.

smartypants

Type: boolean Default: false

Use “smart” typograhic punctuation for things like quotes and dashes.

emoji

Type: Boolean / String / Function Default: false

Enable replacement of colon-delimited Emoji emoticon codes like :warning: or :+1:. This option requires the gfm option to be true. :octocat:

ed.setOptions({
oji: function (emoji) {
return '<span data-emoji="' + emoji + '"></span>';


The default template:

 src="/graphics/emojis/warning.png" alt=":warning:" title=":warning:" 
ass="emoji" align="absmiddle" height="20" width="20">`

:warning: The images for the emoji set used by GitHub can be found in the repos of the emoji-cheat-sheet. :point_left::+1:

Access to lexer and parser

You also have direct access to the lexer and parser if you so desire.

tokens = marked.lexer(text, options);
ole.log(marked.parser(tokens));
js
lexer = new marked.Lexer(options);
tokens = lexer.lex(text);
ole.log(tokens);
ole.log(lexer.rules);
CLI
rked -o hello.html
o world

t hello.html
ello world</p>
Philosophy behind marked

The point of marked was to create a markdown compiler where it was possible to frequently parse huge chunks of markdown without having to worry about caching the compiled output somehow…or blocking for an unnecesarily long time.

marked is very concise and still implements all markdown features. It is also now fully compatible with the client-side.

marked more or less passes the official markdown test suite in its entirety. This is important because a surprising number of markdown compilers cannot pass more than a few tests. It was very difficult to get marked as compliant as it is. It could have cut corners in several areas for the sake of performance, but did not in order to be exactly what you expect in terms of a markdown rendering. In fact, this is why marked could be considered at a disadvantage in the benchmarks above.

Along with implementing every markdown feature, marked also implements GFM features.

Benchmarks

node v0.8.x

de test --bench
ed completed in 3411ms.
ed (gfm) completed in 3727ms.
ed (pedantic) completed in 3201ms.
tskirt completed in 808ms.
down (reuse converter) completed in 11954ms.
down (new converter) completed in 17774ms.
down-js completed in 17191ms.

Marked is now faster than Discount, which is written in C.

For those feeling skeptical: These benchmarks run the entire markdown test suite 1000 times. The test suite tests every feature. It doesn't cater to specific aspects.

Pro level

You also have direct access to the lexer and parser if you so desire.

tokens = marked.lexer(text, options);
ole.log(marked.parser(tokens));
js
lexer = new marked.Lexer(options);
tokens = lexer.lex(text);
ole.log(tokens);
ole.log(lexer.rules);
bash
de
quire('marked').lexer('> i am using marked.')
type: 'blockquote_start' },
type: 'paragraph',
text: 'i am using marked.' },
type: 'blockquote_end' },
nks: {} ]
Running Tests & Contributing

If you want to submit a pull request, make sure your changes pass the test suite. If you're adding a new feature, be sure to add your own test.

The marked test suite is set up slightly strangely: test/new is for all tests that are not part of the original markdown.pl test suite (this is where your test should go if you make one). test/original is only for the original markdown.pl tests. test/tests houses both types of tests after they have been combined and moved/generated by running node test --fix or marked --test --fix.

In other words, if you have a test to add, add it to test/new/ and then regenerate the tests with node test --fix. Commit the result. If your test uses a certain feature, for example, maybe it assumes GFM is not enabled, you can add .nogfm to the filename. So, my-test.text becomes my-test.nogfm.text. You can do this with any marked option. Say you want line breaks and smartypants enabled, your filename should be: my-test.breaks.smartypants.text.

To run the tests:

arked/
 test
Contribution and License Agreement

If you contribute code to this project, you are implicitly allowing your code to be distributed under the MIT license. You are also implicitly verifying that all code is your original work. </legalese>

License

Copyright (c) 2011-2014, Christopher Jeffrey. (MIT License)

See LICENSE for more info.


This work is supported by the National Institutes of Health's National Center for Advancing Translational Sciences, Grant Number U24TR002306. This work is solely the responsibility of the creators and does not necessarily represent the official views of the National Institutes of Health.