added another test for backtick code blocks in textile

This commit is contained in:
Brandon Mathis 2012-05-21 20:19:23 -05:00
parent 53fdadd764
commit 6caab53ab9

View File

@ -14,7 +14,23 @@ module.exports = Tweets
```
``` coffeescript
Tweets = 1
foo && bar
module.exports = Tweets
$(document).ready =>
bar
console.log "hereh"
val=0
rott= =>
val=val+1
$("img.logo").style.webkitTransform="rotate("+val+"deg)"
$("img.logo").style.mozTransform="rotate("+val+"deg)"
settimeout = =>
window.setTimeout 100, =>
console.log "rotating"
rott()
settimeout()
settimeout()
```