https://github.com/ben-ng/readmore
Add `read more` links to your posts
https://github.com/ben-ng/readmore
Last synced: 4 months 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 (about 12 years ago)
- Default Branch: master
- Last Pushed: 2013-06-23T04:40:08.000Z (about 12 years ago)
- Last Synced: 2025-03-24T07:13:32.562Z (4 months ago)
- Language: JavaScript
- Size: 105 KB
- Stars: 0
- Watchers: 3
- 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;
```