diff options
Diffstat (limited to 'lib/backbone/page.js')
-rw-r--r-- | lib/backbone/page.js | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/backbone/page.js b/lib/backbone/page.js index bf3494a..eb3cd61 100644 --- a/lib/backbone/page.js +++ b/lib/backbone/page.js @@ -25,5 +25,10 @@ Page.prototype.read = function() { return this.book.readFile(this.filename); }; +// Parse the page and return its content +Page.prototype.parse = function() { + +}; + module.exports = Page; |