summaryrefslogtreecommitdiffstats
path: root/lib/backbone/readme.js
diff options
context:
space:
mode:
authorSamy Pesse <samypesse@gmail.com>2016-04-30 20:15:08 +0200
committerSamy Pesse <samypesse@gmail.com>2016-04-30 20:15:08 +0200
commit36b49c66c6b75515bc84dd678fd52121a313e8d2 (patch)
treebc7e0f703d4557869943ec7f9495cac7a5027d4f /lib/backbone/readme.js
parent87db7cf1d412fa6fbd18e9a7e4f4755f2c0c5547 (diff)
parent80b8e340dadc54377ff40500f86b1de631395806 (diff)
downloadgitbook-36b49c66c6b75515bc84dd678fd52121a313e8d2.zip
gitbook-36b49c66c6b75515bc84dd678fd52121a313e8d2.tar.gz
gitbook-36b49c66c6b75515bc84dd678fd52121a313e8d2.tar.bz2
Merge branch 'fixes'
Diffstat (limited to 'lib/backbone/readme.js')
-rw-r--r--lib/backbone/readme.js44
1 files changed, 0 insertions, 44 deletions
diff --git a/lib/backbone/readme.js b/lib/backbone/readme.js
deleted file mode 100644
index 088a942..0000000
--- a/lib/backbone/readme.js
+++ /dev/null
@@ -1,44 +0,0 @@
-var util = require('util');
-var BackboneFile = require('./file');
-
-function Readme() {
- BackboneFile.apply(this, arguments);
-
- this.title;
- this.description;
-}
-util.inherits(Readme, BackboneFile);
-
-Readme.prototype.type = 'readme';
-
-/*
- Return and extension of context to define the readme
-
- @retrun {Object}
-*/
-Readme.prototype.getContext = function() {
- return {
- readme: {
- path: this.path
- }
- };
-};
-
-/*
- Parse the readme content
-
- @param {String} content
- @retrun {Promise}
-*/
-Readme.prototype.parse = function(content) {
- var that = this;
-
- return this.parser.readme(content)
- .then(function(out) {
- that.title = out.title;
- that.description = out.description;
- });
-};
-
-
-module.exports = Readme;