Open ahmedalsudani opened 10 years ago
If you try compiling the following:
<video src="video.mp4" autoplay></video>
you won't get a video element. Instead, you get:
<p><video src="video.mp4" autoplay></video></p>
The following equivalent snippet works: (notice the ="" part)
=""
<video src="video.mp4" autoplay=""></video>
and you end up with:
<p><video src="video.mp4" autoplay=""></video></p>
If you try compiling the following:
you won't get a video element. Instead, you get:
The following equivalent snippet works: (notice the
=""
part)and you end up with: