Meteor JS Jade 模板无法按预期工作

Meteor JS Jade template does not work as expected

我试过这个包https://github.com/matteodem/meteor-easy-search/使用这个示例代码轻松搜索

<template name="searchBox">
    {{> esInput index="players" placeholder="Search..." }}

    <ul>
        {{#esEach index="players"}}
           <li>Name of the player: {{name}}</li>
        {{/esEach}}
    </ul>
 </template>

并将其转换为翡翠

template(name="searchBox")
  +esInput index="players" placeholder="Search..." 
  ul
    esEach index="players"
      li Name of the player: {{name}}

如果我使用 html 格式搜索有效,但当我使用 jade 格式时没有错误,但搜索不会显示。我是否正确地将 html 转换为 jade?知道为什么 jade 不起作用吗?

esEach 应该是 +esEach。现在至少有 30 个字符。