summaryrefslogtreecommitdiffstats
path: root/packages/gitbook-markdown/lib/annotate.js
diff options
context:
space:
mode:
authorAaron O'Mullan <aaron.omullan@gmail.com>2015-05-27 16:14:11 +0200
committerSamy Pessé <samypesse@gmail.com>2016-12-22 15:00:46 +0100
commit51e6efde9ab638a04e6d4596ad1abf8c0c3b4b31 (patch)
tree27b979335792ff78d65b0a51621c7c923bac90f4 /packages/gitbook-markdown/lib/annotate.js
parent6b22b7cc996330c8985755237c190fd830b89de2 (diff)
downloadgitbook-51e6efde9ab638a04e6d4596ad1abf8c0c3b4b31.zip
gitbook-51e6efde9ab638a04e6d4596ad1abf8c0c3b4b31.tar.gz
gitbook-51e6efde9ab638a04e6d4596ad1abf8c0c3b4b31.tar.bz2
Remove annotation code and switch to kramed's annotation engine
Diffstat (limited to 'packages/gitbook-markdown/lib/annotate.js')
-rw-r--r--packages/gitbook-markdown/lib/annotate.js10
1 files changed, 0 insertions, 10 deletions
diff --git a/packages/gitbook-markdown/lib/annotate.js b/packages/gitbook-markdown/lib/annotate.js
deleted file mode 100644
index 8cc7f89..0000000
--- a/packages/gitbook-markdown/lib/annotate.js
+++ /dev/null
@@ -1,10 +0,0 @@
-var blocks = require('./annotate_blocks');
-var inline = require('./annotate_inline');
-
-function annotate(src) {
- return blocks(src);
-}
-
-module.exports = annotate;
-module.exports.blocks = blocks;
-module.exports.inline = inline;