summaryrefslogtreecommitdiffstats
path: root/packages/gitbook-asciidoc/lib/index.js
diff options
context:
space:
mode:
authorSamy Pesse <samypesse@gmail.com>2016-05-02 17:26:27 +0200
committerSamy Pessé <samypesse@gmail.com>2016-12-22 11:46:26 +0100
commitb54abca0ca8633d8d4aad50abe5c683a3913356b (patch)
tree2b8751e840ef5c4be3a3a7ce44b7eecfe66de2ba /packages/gitbook-asciidoc/lib/index.js
parentee036034b050f0bfa3be9f9b48bc8b077f2a2960 (diff)
downloadgitbook-b54abca0ca8633d8d4aad50abe5c683a3913356b.zip
gitbook-b54abca0ca8633d8d4aad50abe5c683a3913356b.tar.gz
gitbook-b54abca0ca8633d8d4aad50abe5c683a3913356b.tar.bz2
Fix stupid error
Diffstat (limited to 'packages/gitbook-asciidoc/lib/index.js')
-rwxr-xr-xpackages/gitbook-asciidoc/lib/index.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/gitbook-asciidoc/lib/index.js b/packages/gitbook-asciidoc/lib/index.js
index f536318..56e7bb3 100755
--- a/packages/gitbook-asciidoc/lib/index.js
+++ b/packages/gitbook-asciidoc/lib/index.js
@@ -1,5 +1,5 @@
var HTMLParser = require('gitbook-html');
-var toHTML = require('./tohtml');
+var toHTML = require('./toHTML');
var toAsciidoc = require('./toasciidoc');
module.exports = HTMLParser.createParser(toHTML, toAsciidoc);