mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
17 lines
478 B
HTML
17 lines
478 B
HTML
<template name="pkg_showdown">
|
|
{{#markdown}}
|
|
|
|
## `showdown`
|
|
<!-- XXX rename to markdown when we rename the package -->
|
|
|
|
This package lets you use Markdown in your templates. It's easy: just
|
|
put your markdown inside
|
|
<code>{{#markdown}}</code> ... <code>{{/markdown}}</code>
|
|
tags. You can still use all of the usual Meteor template features
|
|
inside a Markdown block, such `#each`, and you still get reactivity.
|
|
|
|
<!-- XXX include an example -->
|
|
|
|
{{/markdown}}
|
|
</template>
|