diff --git a/Gruntfile.js b/Gruntfile.js
index a85184512f76615fc007d0a5c35962e0d77403d3..a17de4df5acbc20ca5f16a57616dbbb4cc7f353f 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' ]
+      }
 		}
 
 	});