coffeekup icon indicating copy to clipboard operation
coffeekup copied to clipboard

Markup as CoffeeScript.

Results 39 coffeekup issues
Sort by recently updated
recently updated
newest added

When using cofeekup with express and enabling `autoescape`, the `@body` property in the layout will be escaped as well; it should not. ``` coffeescript # sample express application - app.coffee...

In html5 it is possible to render in-line SVG. How can this done with CoffeeKup? ``` coffeescript body -> svg -> g -> line x1: 0, y1: 0, x2: 33,...

the coffekup code: div "#my_id", -> gives: <DIV class="#my_id"> instead of giving the element an id it gives the element a class that starts with a '#'. However, it works...

Jitter has an interesting feature: https://github.com/TrevorBurnham/Jitter jitter src/coffee/ web-app/js/ This will watch all CoffeeScript files in src/coffee/_.coffee recursively and reproduce the same structure inside web-app/js/_.js. It would be great to...

If I do this: ``` coffeescript helpers = formFor: -> form = new Form(arguments…) form.render() class Form constructor: -> render: -> form action: "/", -> input type: 'text' ``` …the...

Hi maurice..I've a doubt..is possible write inline views inside my express controllers?..similar to zappa: @view hi: -> h1 @name I've used clojure noir and I like a lot the idea...

This is a total feature request that might be worth ignoring... but when I've used other templating engines... if a variable isn't found, the default is to simply ignore the...

Would be a nice extension for docpad powered websites - http://github.com/balupton/docpad Happy to brainstorm how this will work (skype: balupton)

Currrently using the --js option on the command line spits out a template as JavaScript, which is great. Unfortunately, it is bloated with unused code. If one is including 20-30...

enhancement
idea

Hello When looking for unused tag to strip them out from the template function, coffeekup look for a match of the tag wouldn't it be more accurate to look for...