markdown
Documentation of Meteor's markdown
package.
This package lets you use Markdown in your templates. It’s easy: justput your markdown inside {{#markdown}} … {{/markdown}}
tags. You can still use all of the usual Meteor template featuresinside a Markdown block, such as {{#each}}
, and you still getreactivity.
Example:
{{#markdown}}I am using __markdown__.{{/markdown}}
outputs
<p>I am using <strong>markdown</strong>.</p>