我正在尝试使用嵌入式代码直接生成HTML / iframe的这个R markdown文档,但是还没有能够这样做。
这是降价:
{r results='asis', warning=FALSE,eval=TRUE, echo=FALSE, comment=''}
print("<iframe width=\"560\" height=\"315\" src=\"http://www.youtube.com/embed/9bZkp7q19f0?rel=0\" frameborder=\"0\" allowfullscreen></iframe>")
我没有在生成的HTML中使用iframe,而是得到了这个:
<p>[1] “<iframe width="560" height="315" src="<a href="http://www.youtube.com/embed/9bZkp7q19f0?rel=0\" class="uri">http://www.youtube.com/embed/9bZkp7q19f0?rel=0\</a>” frameborder="0" allowfullscreen></iframe>"</p>
我也尝试过使用pandoc选项:
html_document:
md_extensions: -autolink_bare_uris
仍然没有给我想要的结果
<p>[1] “<iframe width="560" height="315" src="http://www.youtube.com/embed/9bZkp7q19f0?rel=0" frameborder="0" allowfullscreen></iframe>”</p>