Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ben-ng/pullquote
Add pull quotes to your posts
https://github.com/ben-ng/pullquote
Last synced: 21 days ago
JSON representation
Add pull quotes to your posts
- Host: GitHub
- URL: https://github.com/ben-ng/pullquote
- Owner: ben-ng
- Created: 2013-08-02T21:35:11.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2013-08-04T01:23:12.000Z (over 11 years ago)
- Last Synced: 2024-09-15T06:39:33.598Z (about 2 months ago)
- Language: JavaScript
- Size: 113 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
#Install
```
# In your scotch directory:
npm install pullquote# 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: [
'pullquote'
]
}
};module.exports = config;
```