diff options
Diffstat (limited to 'packages/gitbook-asciidoc/src/index.js')
-rwxr-xr-x | packages/gitbook-asciidoc/src/index.js | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/packages/gitbook-asciidoc/src/index.js b/packages/gitbook-asciidoc/src/index.js new file mode 100755 index 0000000..9ba30e7 --- /dev/null +++ b/packages/gitbook-asciidoc/src/index.js @@ -0,0 +1,5 @@ +const HTMLParser = require('gitbook-html'); +const toHTML = require('./toHTML'); +const toAsciidoc = require('./toAsciidoc'); + +module.exports = HTMLParser.createParser(toHTML, toAsciidoc); |