2013-08-28 38 views
1

以下是我想从html转换为jade的代码。如何将以下html转换为玉

<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> 

感谢

回答

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.