如何将以下html转换为jade

时间:2013-08-28 07:07:01

标签: html pug

以下是我想从html转换为jade的代码。

 <video width="320" height="240" controls>
  <source src="movie.mp4" type="video/mp4">
  <source src="movie.ogg" type="video/ogg">
  Your browser does not support the video tag.
 </video>

由于

3 个答案:

答案 0 :(得分:5)

您可以在此处进行测试:http://jade-lang.com/demo/

video(width="320", height="240", controls)
  source(src="movie.mp4", type="video/mp4")
  source(src="movie.ogg", type="video/ogg")
  |Your browser does not support the video tag.

答案 1 :(得分:2)

您可以使用http://html2jade.org/进行双向转换。

(@Sushrut引用的HTML2Jade是一个死链接)

答案 2 :(得分:0)

您可以使用它来转换副词:HTML2Jade