-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gruntfile.js
61 lines (57 loc) · 1.15 KB
/
Gruntfile.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
/*
* grunt-slice-markdown
* https://github.com/uhop/grunt-slice-markdown
*
* Copyright (c) 2014 Eugene Lazutkin
* Licensed under the New BSD license.
*/
"use strict";
module.exports = function(grunt) {
grunt.initConfig({
slice_front: {
plain: {
options: {
templateParams: {
title: "Demo"
}
},
src: "tests/demo.md",
dest: "tests/demo-plain.html"
},
trivial: {
options: {
templateFile: "tests/trivial/trivial.html.jst",
templateParams: {
title: "Demo"
}
},
src: "tests/demo.md",
dest: "tests/demo-trivial.html"
},
dynamic: {
options: {
templateFile: "tests/trivial/trivial.html.jst",
templateParams: {
title: "Dynamic demo"
}
},
// dynamically mapping files, so it's not just reading demo.md, but also about/index.md, as well.
files: [
{
expand: true,
cwd: "tests/",
src: [
"*.md",
"**/*.md"
],
dest: "tests/dynamic/",
ext: ".html"
}
]
}
}
});
grunt.loadTasks("tasks");
grunt.registerTask("default", "slice_front");
grunt.registerTask("test", "slice_front");
};