diff options
author | Samy Pesse <samypesse@gmail.com> | 2016-05-02 17:14:15 +0200 |
---|---|---|
committer | Samy Pessé <samypesse@gmail.com> | 2016-12-22 15:00:56 +0100 |
commit | 779b4a04013fa57510f65c0c0cedea687cc54003 (patch) | |
tree | 5b3a8bc7312f576b7fbf9a19fd255bb56c61032e | |
parent | 247bd6acb4d9f936226e8f9932f5cac11dd11540 (diff) | |
download | gitbook-779b4a04013fa57510f65c0c0cedea687cc54003.zip gitbook-779b4a04013fa57510f65c0c0cedea687cc54003.tar.gz gitbook-779b4a04013fa57510f65c0c0cedea687cc54003.tar.bz2 |
Fix path for toHTML module
-rw-r--r-- | packages/gitbook-markdown/lib/index.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/gitbook-markdown/lib/index.js b/packages/gitbook-markdown/lib/index.js index 49edee6..d65ebf7 100644 --- a/packages/gitbook-markdown/lib/index.js +++ b/packages/gitbook-markdown/lib/index.js @@ -1,6 +1,6 @@ var HTMLParser = require('gitbook-html'); -var toHTML = require('./tohtml'); +var toHTML = require('./toHTML'); var toMarkdown = require('./toMarkdown'); var page = require('./page'); |