Skip to content

Commit

Permalink
Update master
Browse files Browse the repository at this point in the history
  • Loading branch information
malgorithms committed Jul 3, 2012
1 parent edd5df1 commit e795adb
Showing 1 changed file with 16 additions and 4 deletions.
20 changes: 16 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,8 @@ and view caching (with convenient time limits).

status
======
Beta with lots of bug possibilities. Don't use unless you work at OkCupid
or don't mind changing syntax.

And there aren't yet meaningful line numbers on errors.
Beta with a few bugs. Don't use unless you work at OkCupid
or don't mind changing syntax. At the bottom of this page you'll see a couple key language issues.

examples
========
Expand Down Expand Up @@ -236,7 +234,21 @@ toffee = require 'toffee'
toffee.expressEngine.maxCacheAge = Infinity # infinity milliseconds, that is.
```

a couple issues
===============
1. currently `#{}` regions have to be on a single line. For example:
```
#{3 + 5}
```
...is ok. But not:
```
#{3
+ 5}
```
...which will cause an error.

2. comments in `{## ##}` cannot contain other toffee code. Hope to have this fixed soon, as these tokens should
be useful for temporarily commenting off a region of a template.

contributing
=============
Expand Down

0 comments on commit e795adb

Please sign in to comment.