diff options
Diffstat (limited to 'packages/gitbook-asciidoc/lib/index.js')
-rwxr-xr-x | packages/gitbook-asciidoc/lib/index.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/gitbook-asciidoc/lib/index.js b/packages/gitbook-asciidoc/lib/index.js index f9314ba..f536318 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 HTMLParser = require('gitbook-html'); var toHTML = require('./tohtml'); var toAsciidoc = require('./toasciidoc'); -module.exports = htmlParser.createParser(toHTML, toAsciidoc); +module.exports = HTMLParser.createParser(toHTML, toAsciidoc); |