mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
Rewrite <a href> links to use Markdown syntax now that they don't need the <a href> to get target=_blank.
26 lines
827 B
HTML
26 lines
827 B
HTML
<template name="pkg_underscore">
|
|
{{#better_markdown}}
|
|
## `underscore`
|
|
|
|
Underscore is a utility-belt library for JavaScript that provides
|
|
support for functional programming. It is invaluable for writing clear,
|
|
concise JavaScript in a functional style.
|
|
|
|
The `underscore` package defines the `_` namespace on both the client
|
|
and the server.
|
|
|
|
See <http://documentcloud.github.com/underscore/> for underscore API
|
|
documentation.
|
|
|
|
{{#warning}}
|
|
Currently, underscore is included in all projects, as the Meteor
|
|
core depends on it. _ is available in the global namespace on both the
|
|
client and the server even if you do not include this package. However
|
|
if you do use underscore in your application, you should still add the
|
|
package as we will remove the default underscore in the future.
|
|
{{/warning}}
|
|
|
|
|
|
{{/better_markdown}}
|
|
</template>
|