2013-08-28 44 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.