aboutsummaryrefslogtreecommitdiff
path: root/Gruntfile.js
diff options
context:
space:
mode:
authorHakim El Hattab <hakim.elhattab@gmail.com>2015-10-26 14:40:56 +0100
committerHakim El Hattab <hakim.elhattab@gmail.com>2015-10-26 14:40:56 +0100
commit2a757794fb86b2b3c2a1e7b1e1c1ab563e9f3b9d (patch)
treef9afd2453e66f1e9c0b3cf76e2571a35f1c148e1 /Gruntfile.js
parent5949e4352438c7c2a0c86d8dd0222c530a62d225 (diff)
parent3d53766e516160b86e408244fac507a054e6426f (diff)
downloadfreenode-live-2017-presentation-2a757794fb86b2b3c2a1e7b1e1c1ab563e9f3b9d.tar
freenode-live-2017-presentation-2a757794fb86b2b3c2a1e7b1e1c1ab563e9f3b9d.tar.gz
Merge pull request #1399 from sloan-848/markdown-packaging
Add more support for external markdown.
Diffstat (limited to 'Gruntfile.js')
-rw-r--r--Gruntfile.js8
1 files changed, 6 insertions, 2 deletions
diff --git a/Gruntfile.js b/Gruntfile.js
index a851845..a17de4d 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -107,7 +107,8 @@ module.exports = function(grunt) {
'js/**',
'lib/**',
'images/**',
- 'plugin/**'
+ 'plugin/**',
+ '**.md'
]
},
@@ -129,7 +130,10 @@ module.exports = function(grunt) {
},
html: {
files: [ 'index.html']
- }
+ },
+ markdown: {
+ files: [ './*.md' ]
+ }
}
});