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 you need to export more than one tempalte to js, you probably want to separate the renderer logic from the template itself instead of embedding it in every template,...

I have been experimenting with optimizing coffeekup templates using [UglifyJS](http://github.com/mishoo/UglifyJS) to analyze the template source and prerender the html. The idea is to turn this: ``` javascript function() { //...

A new language that compiles to CSS, closer to CoffeeScript ideals than others I've seen. This patch enables stylus support in coffeekup. Example usage: ``` html -> head -> stylus...

[DocPad](https://github.com/balupton/docpad) is a static site generator and CMS which supports CoffeeKup. Personally, CoffeeKup is my favourite markup to use it with :-) Wrote this pull request as perhaps it'll help...

I use angular. So it is helpful for me to defined custom tags. How I can do it? And is it possible to define "data-attr", "ng-click" , etc?

If I use ``` coffeescript div '#id.class', '' ``` it renders as expected: ``` html ``` but if I switch class and id (which is the case when using [htmlkup](https://github.com/colinta/htmlkup)...

bug

I want to provide place holders for content in my layout template that I can implement in my child templates. I have tried everything I can think of but I...

It would be practical to have a HTML to Coffeekup converter just like http://js2coffee.org/ could be used to convert into both directions. That would simple large HTML conversions.

I have a form in coffeekup (using express, etc.) with some fields and two buttons (update and close). I would like to enable the update button only if a change...

Hello thxs for this nice template engine what's the recommended approach to extend the plugin DSL right now I 'am embedding helpers in the hardcode option , but I would...