jadeテンプレートのボタンをリンクするにはどうすればいいですか?私はjadeテンプレートエンジンボタン付きhrefタグ
a(href="create")button "create new post"
に変更した場合、私はエラーを取得する
<a href="create">button "create new post"</a>
になり
a(href="create") button "create new post"
を試みたHTML
<a href="create"><button type="button">create new post</button></a>
を生成しようとしています
logJs\views\posts\update.jade:7 5| block content 6| h1='creating new post' > 7| a(href="create")button "hello word" 8| form(name="add-post",method="post") 9| div.input 10| span.label title Unexpected token `tag` expected `text`, `code`, `:`, `newline` or `eos`
– Arash