summaryrefslogtreecommitdiffstats
path: root/test/plugins
diff options
context:
space:
mode:
Diffstat (limited to 'test/plugins')
-rw-r--r--test/plugins/blocks/index.js5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/plugins/blocks/index.js b/test/plugins/blocks/index.js
index b8f72fe..0a02ff7 100644
--- a/test/plugins/blocks/index.js
+++ b/test/plugins/blocks/index.js
@@ -3,6 +3,11 @@ var assert = require("assert");
module.exports = {
blocks: {
"test": {
+ shortcuts: {
+ parsers: ["markdown"],
+ start: "$$",
+ end: "$$"
+ },
process: function(blk) {
return "test"+blk.body+"test";
}