哈巴狗中应有意外的标记“标签”

Unexpected token `tag` expected in pug

我在 keystone 中使用哈巴狗,在添加侧边导航时出现这样的错误。

> 6| a(href="#")About
--------------------^
7| a(href="#")Services
8| a(href="#")Client
9| a(href="#")Contact

Unexpected token `tag` expected `text`, `interpolated-code`, `code`, `:`, `slash`, `newline` or `eos`

tag/attributes 及其内容(在右括号后)之间需要有一个 space 才能使其有效 Pug:

a(href='#') About

文档中有关使用 tags with attributes in Pug

的更多示例