coffeecup icon indicating copy to clipboard operation
coffeecup copied to clipboard

keeping the project alive with this clone of mauricemach/coffeekup

Results 23 coffeecup issues
Sort by recently updated
recently updated
newest added

This has been unresolved in a [satisfactory](http://stackoverflow.com/a/11170168/2004521) manner since June 2012 someone first popped [the question](http://stackoverflow.com/q/11166715/2004521) I believe. Could there at least be some discussion on what would be a...

I didn't do a pull request. You have a few waiting anyway. I suggest something like, to stay in line with the rest of the code and conventions, to modify...

To reproduce: ``` $ cat test.coffee a href: '', -> 'link' text 'after' $ coffeecup -f test.coffee && cat test.html link after $ open test.html ``` Perhaps there should be...

Using coffeekup the following is outputted in escaped format: h1 "<foo>" # Correctly outputs as <h1><foo></h1> not so with coffeecup.

Importing: https://github.com/mauricemach/coffeekup/issues/101 A feature CoffeeKup is definitely in need of is asynchronous rendering, this should look like: ``` coffee div (done) -> setTimeout( -> text 'waited 5 seconds' done() 5000...

looks like the feature was never implemented. am i wrong? setting these flags does not affect the output with --js for me.

Dust.js (at least LinkedIn's version) has a useful {@sep} capability to denote what "separator" should be used when generating list entries. It's akin to the "join" operator for an array....

Putting this here for future reference: There currently is an issue with the optimizer, it doesn't do exactly the same tag parsing as the regular code because it replaces the...

coffeecup.render = (template, data = {}, options = {}) -> data[k] = v for k, v of options data.cache ?= off data.stylus = require 'stylus' These first 3 lines of...

https://github.com/mauricemach/coffeekup/issues/96 from @hankmander the coffekup code: div "#my_id", -> gives: instead of giving the element an id it gives the element a class that starts with a '#'. However, it...