Comparing version 0.3.14 to 0.3.15
@@ -0,1 +1,4 @@ | ||
**v0.3.15** | ||
- allow 0 to be rendered as value in render_attrs | ||
**v0.3.14** | ||
@@ -2,0 +5,0 @@ - compiler Added multi-file support to the -j option (thanks @ilogico) |
@@ -18,3 +18,3 @@ // Generated by CoffeeScript 1.3.3 | ||
coffeecup.version = '0.3.14'; | ||
coffeecup.version = '0.3.15'; | ||
@@ -167,3 +167,3 @@ coffeecup.doctypes = { | ||
_results.push(this.render_attrs(v, prefix + k + '-')); | ||
} else if (v) { | ||
} else if (v || v === 0) { | ||
_results.push(text(" " + (prefix + k) + "=\"" + (this.esc(v)) + "\"")); | ||
@@ -170,0 +170,0 @@ } else { |
{ | ||
"name": "coffeecup", | ||
"description": "Markup as CoffeeScript.", | ||
"version": "0.3.14", | ||
"version": "0.3.15", | ||
"author": "Kris Windham <kriswindham@gmail.com>", | ||
@@ -6,0 +6,0 @@ "homepage": "http://easydoc.org/coffeecup", |
@@ -232,3 +232,3 @@ # CoffeeCup <☕/> | ||
- [API reference](https://github.com/gradus/coffeekup/blob/master/docs/reference.md) | ||
- [API reference](https://github.com/gradus/coffeecup/blob/master/docs/reference.md) | ||
@@ -235,0 +235,0 @@ - [Issues](https://github.com/gradus/coffeecup/issues) |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
481262