Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/ben-ng/readmore
- Owner: ben-ng
- Created: 2013-06-17T21:37:25.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2013-06-23T04:40:08.000Z (over 11 years ago)
- Last Synced: 2024-09-15T13:47:37.014Z (about 2 months ago)
- Language: JavaScript
- Size: 105 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
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;
```