Skip to content

Commit

Permalink
v1.2.3. Fixed markdown thanks to eldios ref #52. Added .coffeecss ext…
Browse files Browse the repository at this point in the history
…ension support. Fixed readme typos.
  • Loading branch information
balupton committed Oct 1, 2011
1 parent 6c41d76 commit 8b6dc0e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -159,7 +159,7 @@ DocPad (like Jekyll) is a static website generator, unlike Jekyll it's written i
#### Styles

- [Stylus](http://learnboost.github.com/stylus/) to CSS `.css.stylus`
- [CCSS](https://github.com/aeosynth/ccss) to CSS `.css.css|coffee`
- [CCSS](https://github.com/aeosynth/ccss) to CSS `.css.ccss|coffeecss|coffee`

#### Scripts

Expand Down
2 changes: 1 addition & 1 deletion lib/plugins/renderers/coffee.plugin.coffee
Expand Up @@ -41,7 +41,7 @@ class CoffeePlugin extends DocpadPlugin
next()

# CoffeeCSS to CSS
else if inExtension in ['coffee','ccss'] and outExtension is 'css'
else if inExtension in ['coffeecss','coffee','ccss'] and outExtension is 'css'
file.content = ccss.compile coffee.eval file.content
next()

Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "docpad",
"version": "1.2.2",
"version": "1.2.3",
"description": "DocPad (like Jekyll) is a static website generator, unlike Jekyll it's written in CoffeeScript+Node.js instead of Ruby, and also allows the template engine complete access to the document model. This means you have unlimited power as a CMS and the simplicity of a notepad.",
"homepage": "https://github.com/balupton/docpad",
"keywords": [
Expand Down

0 comments on commit 8b6dc0e

Please sign in to comment.