Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
以 Jade 格式编写时,Jade 似乎在 WebGL 着色器/片段块上卡住了,所以我想将它们写成直接的 HTML,同时仍然能够围绕它编写 Jade。这可能吗?
这些:
html body | <h1>Title</h1> | <p>foo bar baz</p>
编译成:
<!DOCTYPE html> <html> <body> <h1>Title</h1> <p>foo bar baz</p> </body> </html>
希望能帮助到你