I am quite new to web development and have started programming with node.js & express and using the coffeekup view engine. My problem is the following:
If I use the CoffeeKup view engine can I somehow insert coffeeKup code as a parameter to the jquery append method?!?
So for example instead of writing $('body').append('<p>')
I can write $('body').append('p')
or $('body').append(p)
or something similar. I want the compiler to somehow preprocess my coffee code...