Files
meteor/docs/client/packages/coffeescript.html
David Glasser 72731ddda0 Use jQuery to force all non-#internal links to use target=_blank.
Rewrite <a href> links to use Markdown syntax now that they don't need the <a
href> to get target=_blank.
2012-10-15 11:16:53 -07:00

17 lines
543 B
HTML

<template name="pkg_coffeescript">
{{#better_markdown}}
## `coffeescript`
CoffeeScript is a little language that compiles into JavaScript. It
provides a simple syntax without lots of braces and parentheses. The
code compiles one-to-one into the equivalent JS, and there is no
interpretation at runtime.
CoffeeScript is supported on both the client and the server. Files
ending with `.coffee` are automatically compiled to JavaScript.
See <http://jashkenas.github.com/coffee-script/> for more information.
{{/better_markdown}}
</template>