将.mmd文件编织到.md并使用不同的名称将.md文件保存一级

时间:2013-11-14 22:02:12

标签: r github markdown knitr rstudio

我有一个名为.rmd的{​​{1}}文件保存在github上名为mycode.rmd的子目录中。

root/scripts

根文件{000}中的R Markdown ======================================================== I'd like to find a way to 'knit to HTML' in RStudio and have the resulting .md file save one level up in the root directory with a different name, README.md, so Github will display it. ```{r, results='hide'} math <- 1 + 1 ``` 始终与README.md中的“真实”.rmd文件保持同步。我想做的最多的事情就是在处理root/scripts时从RStudio按'编织HTML'。

enter image description here

更新

基于@Thomas评论的解决方案:

mycode.rmd

1 个答案:

答案 0 :(得分:4)

基于@Thomas评论的解决方案:

这是一个选项:

```{r, include=FALSE}
   # add this chunk to end of mycode.rmd
   file.rename(from="scripts/mycode.md", 
               to="README.md")
```