有没有办法将Leaf标记传递给另一个Leaf标记? 例如,在我的自定义Leaf标签中,我返回一些html代码:
public func run(
tagTemplate: TagTemplate,
arguments: ArgumentList) throws -> Node? {
return .bytes("<span>#(foo)</span>".bytes)
}
但在我的模板#(foo)
中显示为纯文本,而不是呈现为Leaf标记,而html标记<span></span>
正常工作。