summaryrefslogtreecommitdiffstats
path: root/test/plugins/replace_highlight
diff options
context:
space:
mode:
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
+ };
}
}
}