diff options
Diffstat (limited to 'test/plugins/replace_highlight/index.js')
-rw-r--r-- | test/plugins/replace_highlight/index.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/plugins/replace_highlight/index.js b/test/plugins/replace_highlight/index.js index 25f9642..2e8f71d 100644 --- a/test/plugins/replace_highlight/index.js +++ b/test/plugins/replace_highlight/index.js @@ -2,7 +2,7 @@ module.exports = { blocks: { "code": { process: function(blk) { - var lang = blk.kwargs.language || 'code'; + var lang = blk.kwargs.language || "code"; return lang+"_"+blk.body+"_"+lang; } |