Skip to content

Commit

Permalink
Merge branch 'master' of github.com:visionmedia/jade
Browse files Browse the repository at this point in the history
  • Loading branch information
tj committed Aug 14, 2011
2 parents 6971206 + 4f0a918 commit 2a65c03
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions Readme.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

# Jade - template engine

Jade is a high performance template engine heavily influenced by [Haml](http://haml-lang.com)
Expand Down Expand Up @@ -240,6 +239,16 @@ outputs:

<p>.</p>


It should be noted that text blocks should be doubled escaped. For example if you desire the following output.

</p>foo\bar</p>

use:

p.
foo\\bar

### Comments

Single line comments currently look the same as JavaScript comments,
Expand Down Expand Up @@ -501,7 +510,7 @@ you may use `!=`:

p!= aVarContainingMoreHTML

The on exception made in terms of allowing "vanilla" JavaScript, is
The one exception made in terms of allowing "vanilla" JavaScript, is
the `- each` token. This takes the form of:

- each VAL[, KEY] in OBJ
Expand Down

0 comments on commit 2a65c03

Please sign in to comment.