Merge pull request #1399 from sloan-848/markdown-packaging

Add more support for external markdown.
This commit is contained in:
Hakim El Hattab 2015-10-26 14:40:56 +01:00
commit 2a757794fb
1 changed files with 6 additions and 2 deletions

View File

@ -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' ]
}
}
});