Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/ben-ng/readmore

Add `read more` links to your posts
https://github.com/ben-ng/readmore

Last synced: 21 days ago
JSON representation

Add `read more` links to your posts

Awesome Lists containing this project

README

        

#Install
```
# In your scotch directory:
npm install scotch-formatter-readmore

# Now add it to your config:
vim config/environment.js
```

##Sample Configuration
```js
var config = {
port: 80,
model: {
defaultAdapter: 'mongo'
},
db: {
mongo: {
dbname: 'blog'
}
},
plugins: {
formatters: [
'readmore'
]
}
};

module.exports = config;
```