From 5b989e9c3422b7d45443b91750c65fed98c07df4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Scott=20Gonz=C3=A1lez?= Date: Tue, 14 Aug 2012 09:52:27 -0400 Subject: [PATCH] Removed extraneous require. --- grunt.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/grunt.js b/grunt.js index c7d1a2a..86312ac 100644 --- a/grunt.js +++ b/grunt.js @@ -54,8 +54,7 @@ grunt.registerTask( "build-download", function() { // TODO: Merge with grunt-jquery-content grunt.registerMultiTask( "build-pages", "Process markdown files as pages and syntax higlight code snippets", function() { - var markdown = require( "markdown" ).markdown, - marked = require( "marked" ), + var marked = require( "marked" ), files = this.data, targetDir = grunt.config( "wordpress.dir" ) + "/posts/";