diff options
author | Samy Pessé <samypesse@gmail.com> | 2015-09-15 14:20:32 +0200 |
---|---|---|
committer | Samy Pessé <samypesse@gmail.com> | 2015-09-15 14:20:32 +0200 |
commit | 1fd00068595dfced5a0f16ac05ae2553d09608bc (patch) | |
tree | 1605473bf22c7e4ab90a6cc9bebf5cb807fa1d90 /test/plugins | |
parent | 5a205346e3d125b1c834220ce98a206d88697811 (diff) | |
download | gitbook-1fd00068595dfced5a0f16ac05ae2553d09608bc.zip gitbook-1fd00068595dfced5a0f16ac05ae2553d09608bc.tar.gz gitbook-1fd00068595dfced5a0f16ac05ae2553d09608bc.tar.bz2 |
Lint all tests
Diffstat (limited to 'test/plugins')
-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; } |