如何将以下html转换为jade

Pro*_*uce 2 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>
Run Code Online (Sandbox Code Playgroud)

谢谢

小智 6

你可以在这里测试一下: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.
Run Code Online (Sandbox Code Playgroud)