我刚刚更新了几个R软件包,它似乎在RStudio中的Rmd
文档的markdown临时输出的生成中引入了重大变化。
假设在生成knitr
的过程中,RStudio仍然使用md
从Rmd
生成html
,表达式为:
---
output:
html_document:
keep_md: yes
---
```{r myimg, fig.cap="My caption"}
library(ggplot2)
qplot(Sepal.Length, Petal.Length, data = iris, color = Species)
```
用于渲染形式的东西:
![My caption](myimg.png)
现在以降价呈现:
<div class="figure">
<img src="myimg.png" alt="My caption" />
<p class="caption">My caption</p>
</div>
这根本不是我想要的。
如何将原始的,更简单的md
格式化回来?
答案 0 :(得分:3)
This issue目前在fixed的 knitr (&gt; = 1.12.6)中已Github。我正在写出图像的HTML代码,以支持我正在处理的另一个包,我应该只是有条件地启用它。现在,您应该能够在Markdown输出中看到原始的![]()
语法。