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 シェーダー/フラグメント ブロックでチョークするように見えるので、Jade を記述できるようにしながら、それらをストレートな HTML として記述したいと考えています。これは可能ですか?
これらは:
html body | <h1>Title</h1> | <p>foo bar baz</p>
次のようにコンパイルされます。
<!DOCTYPE html> <html> <body> <h1>Title</h1> <p>foo bar baz</p> </body> </html>
それが役に立てば幸い