Skip to content

Markdown

注意:此包已被弃用。

¥Note: This package has been deprecated.

此软件包可让你在模板中使用 Markdown。

¥This package lets you use Markdown in your templates.

安装

¥Installation

sh
meteor add markdown

用法

¥Usage

此包是延迟加载的。未添加到初始 Bundle 中。因此,你需要将其导入到你的模板中。

¥This package is lazy loaded. Is is not added into the initial Bundle. So you need to import it in your template.

js
// myTemplate.js
import 'meteor/markdown';

然后,你可以在模板中使用 markdown 助手:

¥Then you can use the markdown helper in your templates:

html
<!-- myTemplate.html -->
{{#markdown}}I am using __markdown__.{{/markdown}}

outputs

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