Skip to content

Instantly share code, notes, and snippets.

@mauricemach
Created October 25, 2010 00:37
Show Gist options
  • Save mauricemach/644214 to your computer and use it in GitHub Desktop.
Save mauricemach/644214 to your computer and use it in GitHub Desktop.
User-defined nested rendering, synchronous
ck = require 'coffeekup'
tpl = ->
html ->
head ->
title 'title'
body ->
render 'index.coffee'
render = (file) ->
code = require('fs').readFileSync file, 'utf8'
ck.render code, context: @
puts ck.render tpl, locals: {render: render}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment