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.js14
-rw-r--r--test/plugins/replace_highlight/package.json9
2 files changed, 0 insertions, 23 deletions
diff --git a/test/plugins/replace_highlight/index.js b/test/plugins/replace_highlight/index.js
deleted file mode 100644
index 8586486..0000000
--- a/test/plugins/replace_highlight/index.js
+++ /dev/null
@@ -1,14 +0,0 @@
-module.exports = {
- blocks: {
- "code": {
- process: function(blk) {
- var lang = blk.kwargs.language || "code";
-
- return {
- body: lang+"_"+blk.body+"_"+lang,
- html: false
- };
- }
- }
- }
-}; \ No newline at end of file
diff --git a/test/plugins/replace_highlight/package.json b/test/plugins/replace_highlight/package.json
deleted file mode 100644
index 72d1033..0000000
--- a/test/plugins/replace_highlight/package.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "name": "gitbook-plugin-replace_highlight",
- "description": "Test replacing default code highlighter",
- "main": "index.js",
- "version": "0.0.1",
- "engines": {
- "gitbook": "*"
- }
-} \ No newline at end of file