readmore
v0.0.2
Published
Add 'read more' links to your posts
Downloads
58
Readme
#Install
# In your scotch directory:
npm install scotch-formatter-readmore
# Now add it to your config:
vim config/environment.js
##Sample Configuration
var config = {
port: 80,
model: {
defaultAdapter: 'mongo'
},
db: {
mongo: {
dbname: 'blog'
}
},
plugins: {
formatters: [
'readmore'
]
}
};
module.exports = config;