9

我正在尝试在这样的玉线中间使用mixin...

p some paragraph text !{ 'this'+'works' } but !{ +myMixin() } breaks it!

但它不起作用。我不知道如何在一条玉线中间引用一个 mixin。可能吗?

4

2 回答 2

17

您需要特殊的方式来内联使用翡翠混合:

p.
  Hello I'm using #[+jadeMixin(param)] inline.
于 2015-08-01T15:55:27.613 回答
2

不可能在这样的句子中放入mixin。您可以做的是在 mixin中包含块并使用pikes | 对于纯文本。

mixin myMixin()
  strong
   block

p This is a sentence 
  +myMixin()
    | with bold text
  |  and this is the rest of it

这将呈现:

<p>This is a sentence <strong>with bold text</strong> and this is the rest of it</p>
于 2014-09-01T19:56:54.237 回答