kramdown 中的定义列表

Definition lists in kramdown

如何使用 kramdown 生成以下 HTML 标记?

<ol>
<li> <dt> Term </dt> 
<dd class="meta">  Definition of the term </dd> 
</li>
</ol>

其中 meta 是我的 css 中定义的一些适当的样式 (class)。

I already tried:

1. Term 
: Definition of the term {: .meta}

but that does not work.

如有任何帮助,我们将不胜感激。

您可能遇到以下错误:

Warning: Found span IAL after text - ignoring it

因此,如果您将 IAL 放在文本之前,它可以正常解析。

1. Term
: {: .meta} Definition of the term

产量

<ol>
  <li>
    <dl>
      <dt>Term</dt>
      <dd class="meta">Definition of the term</dd>
    </dl>
  </li>
</ol>