diff options
author | Samy Pesse <samypesse@gmail.com> | 2016-05-02 17:26:27 +0200 |
---|---|---|
committer | Samy Pessé <samypesse@gmail.com> | 2016-12-22 11:46:26 +0100 |
commit | b54abca0ca8633d8d4aad50abe5c683a3913356b (patch) | |
tree | 2b8751e840ef5c4be3a3a7ce44b7eecfe66de2ba /packages/gitbook-asciidoc | |
parent | ee036034b050f0bfa3be9f9b48bc8b077f2a2960 (diff) | |
download | gitbook-b54abca0ca8633d8d4aad50abe5c683a3913356b.zip gitbook-b54abca0ca8633d8d4aad50abe5c683a3913356b.tar.gz gitbook-b54abca0ca8633d8d4aad50abe5c683a3913356b.tar.bz2 |
Fix stupid error
Diffstat (limited to 'packages/gitbook-asciidoc')
-rwxr-xr-x | packages/gitbook-asciidoc/lib/index.js | 2 |
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); |