Skip to content
This repository has been archived by the owner on Oct 24, 2021. It is now read-only.

Latest commit

 

History

History
22 lines (17 loc) · 538 Bytes

markdown.md

File metadata and controls

22 lines (17 loc) · 538 Bytes
title description
markdown
Documentation of Meteor's `markdown` package.

This package lets you use Markdown in your templates. It's easy: just put your markdown inside {% raw %}{{#markdown}} ... {{/markdown}}{% endraw %} tags. You can still use all of the usual Meteor template features inside a Markdown block, such as {% raw %}{{#each}}{% endraw %}, and you still get reactivity.

Example:

{{#markdown}}I am using __markdown__.{{/markdown}}

outputs

<p>I am using <strong>markdown</strong>.</p>