diff options
author | Aaron O'Mullan <aaron.omullan@friendco.de> | 2014-04-06 14:02:49 -0700 |
---|---|---|
committer | Aaron O'Mullan <aaron.omullan@friendco.de> | 2014-04-06 14:02:49 -0700 |
commit | c98ba22b08759f054748050945a467819e7481a6 (patch) | |
tree | e485f0f3356cb9c0a3027d65c2bed67dce96bfaf /lib/parse/index.js | |
parent | ef059c873753b3cdf42b102fc07b24767c5d0641 (diff) | |
download | gitbook-c98ba22b08759f054748050945a467819e7481a6.zip gitbook-c98ba22b08759f054748050945a467819e7481a6.tar.gz gitbook-c98ba22b08759f054748050945a467819e7481a6.tar.bz2 |
Move page lexer to separate module
Allow lexer to be used independently of page parser/renderer
Diffstat (limited to 'lib/parse/index.js')
-rw-r--r-- | lib/parse/index.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/parse/index.js b/lib/parse/index.js index ec98347..0e333e4 100644 --- a/lib/parse/index.js +++ b/lib/parse/index.js @@ -2,6 +2,7 @@ module.exports = { summary: require('./summary'), langs: require('./langs'), page: require('./page'), + lex: require('./lex'), progress: require('./progress'), navigation: require('./navigation'), }; |