This repository was archived by the owner on Dec 19, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.js
85 lines (63 loc) · 1.65 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
var Builder = require('component-builder')
, fs = require('fs')
, path = require('path')
, marked = require('marked')
, str2js = require('string-to-js')
, debug = require('debug')('component-markdown');
/**
* Plugin.
*
* @param {Object} builder or markdown options
*/
module.exports = function (builder) {
debugger;
// no options
if (builder instanceof Builder) return compileMarkdown(builder);
// options
exports.options(builder);
return compileMarkdown;
};
/**
* Set options. Passes 'em straight to marked, go wild.
*
* @param {Object} options
*/
exports.options = function (options) {
marked.setOptions(options);
};
/**
* Compile Markdown.
*
* @param {Object} builder
*/
function compileMarkdown (builder) {
builder.hook('before scripts', function (builder, callback) {
if (!builder.config.templates) return callback();
var templates = builder.config.templates.filter(filterMarkdown);
templates.forEach(function (file) {
debug('compiling: %s', file);
var str = fs.readFileSync(builder.path(file), 'utf8');
var html = marked(str);
var js = str2js(html);
builder.addFile('scripts', file + '.js', js);
builder.removeFile('templates', file);
});
callback();
});
}
/**
* Markdown matcher.
*
* Use the same file types that Github allows:
* https://github.com/github/markup/blob/b865add2e053f8cea3d7f4d9dcba001bdfd78994/lib/github/markups.rb#L1
*/
var matcher = /\.(md|mkdn?|mdown|markdown)/;
/**
* Filter for Markdown files.
*
* @param {String} filename
* @return {Boolean}
*/
function filterMarkdown (filename) {
return matcher.test(path.extname(filename));
}