summaryrefslogtreecommitdiffstats
path: root/test/plugins/replace_highlight/index.js
diff options
context:
space:
mode:
authorSamy Pessé <samypesse@gmail.com>2015-09-15 14:20:32 +0200
committerSamy Pessé <samypesse@gmail.com>2015-09-15 14:20:32 +0200
commit1fd00068595dfced5a0f16ac05ae2553d09608bc (patch)
tree1605473bf22c7e4ab90a6cc9bebf5cb807fa1d90 /test/plugins/replace_highlight/index.js
parent5a205346e3d125b1c834220ce98a206d88697811 (diff)
downloadgitbook-1fd00068595dfced5a0f16ac05ae2553d09608bc.zip
gitbook-1fd00068595dfced5a0f16ac05ae2553d09608bc.tar.gz
gitbook-1fd00068595dfced5a0f16ac05ae2553d09608bc.tar.bz2
Lint all tests
Diffstat (limited to 'test/plugins/replace_highlight/index.js')
-rw-r--r--test/plugins/replace_highlight/index.js2
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;
}