readmore
Version:
Add 'read more' links to your posts
22 lines (18 loc) • 523 B
JavaScript
/**
* Generates a Read More link in the "index" scenario
*/
(function () {
var readmore = function (buffer) {
//Find a readmore link
var match = buffer.match(/<!-- *more *-->/gi);
if(match != null) {
//Snip it off at the first match
buffer = buffer.substring(0, buffer.indexOf(match[0]))
//Append a readmore link
+ '<p><a href="/' + this.slug + '.html">Read On »</a></p>';
return buffer;
}
return buffer;
};
exports.index = readmore;
}());