Embed Youtube Video in R Markdown

I am trying to publish .Rmd to Rpubs by embedding a youtube video link. After some research, I try to do the following, which just gives an empty space in my html.

 <div align="center"> <iframe width="560" height="315" src="http://www.youtube.com/embed/zsYjsgm4Psg" frameborder="0" allowfullscreen> </iframe> </div> 

Two related posts:

+5
source share
1 answer
 <iframe width="560" height="315" src="http://www.youtube.com/embed/9bZkp7q19f0?rel=0" frameborder="0" allowfullscreen></iframe> 

This can be put in a piece of code inside .Rmd

A source

+7
source

Source: https://habr.com/ru/post/1210148/


All Articles