summaryrefslogtreecommitdiffstats
path: root/test/plugins/replace_highlight
diff options
context:
space:
mode:
authorSamy Pessé <samypesse@gmail.com>2015-09-22 22:46:19 +0200
committerSamy Pessé <samypesse@gmail.com>2015-09-22 22:46:19 +0200
commitf0ddb6e89f78558814e3a3b4ac6c919b8d5ac3a8 (patch)
tree019121501dc7017f3a32f3f2ada5c0207494e7b9 /test/plugins/replace_highlight
parent0e9beeae14682b8124db3df580a21e6a76cc0805 (diff)
parent2b408db7cb18fb8cea8e1932e70926e84cd64136 (diff)
downloadgitbook-f0ddb6e89f78558814e3a3b4ac6c919b8d5ac3a8.zip
gitbook-f0ddb6e89f78558814e3a3b4ac6c919b8d5ac3a8.tar.gz
gitbook-f0ddb6e89f78558814e3a3b4ac6c919b8d5ac3a8.tar.bz2
Merge branch 'fix/inline_code_html'
Diffstat (limited to 'test/plugins/replace_highlight')
-rw-r--r--test/plugins/replace_highlight/index.js5
1 files changed, 4 insertions, 1 deletions
diff --git a/test/plugins/replace_highlight/index.js b/test/plugins/replace_highlight/index.js
index 2e8f71d..8586486 100644
--- a/test/plugins/replace_highlight/index.js
+++ b/test/plugins/replace_highlight/index.js
@@ -4,7 +4,10 @@ module.exports = {
process: function(blk) {
var lang = blk.kwargs.language || "code";
- return lang+"_"+blk.body+"_"+lang;
+ return {
+ body: lang+"_"+blk.body+"_"+lang,
+ html: false
+ };
}
}
}