Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/grunt
diff options
context:
space:
mode:
authorjonschlinkert <dev@sellside.com>2014-10-26 13:38:10 +0300
committerjonschlinkert <dev@sellside.com>2014-10-26 13:38:10 +0300
commit3e9b461766fffe71c58da2d61cd3773f83caa2cf (patch)
tree5b3844558a96e2998ddda4d37af3d9f0a7f5126f /grunt
parentbab3679d1031ac77503c0c14b56aeda885721584 (diff)
Replaces markdown.js with [remarkable](https://github.com/jonschlinkert/remarkable).
- remarkable has 100% support for [commonmark](http://jgm.github.io/CommonMark/spec.html) - [faster](https://github.com/jonschlinkert/remarkable/tree/master/benchmark) - easier to monkeypatch. this is a goal of ours, might be useful to you at some point given the custom tokenizing/parsing you're doing for documentation.
Diffstat (limited to 'grunt')
-rw-r--r--grunt/bs-lessdoc-parser.js6
1 files changed, 4 insertions, 2 deletions
diff --git a/grunt/bs-lessdoc-parser.js b/grunt/bs-lessdoc-parser.js
index c1821de1cb..fb1666187c 100644
--- a/grunt/bs-lessdoc-parser.js
+++ b/grunt/bs-lessdoc-parser.js
@@ -6,11 +6,13 @@
*/
'use strict';
-var markdown = require('markdown').markdown;
+var Remarkable = require('remarkable');
function markdown2html(markdownString) {
+ var md = new Remarkable();
+
// the slice removes the <p>...</p> wrapper output by Markdown processor
- return markdown.toHTML(markdownString.trim()).slice(3, -4);
+ return md.render(markdownString.trim()).slice(3, -5);
}