Skip to content

Commit

Permalink
More fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jennybc committed Jun 21, 2022
1 parent 9839f3d commit d62c3f2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion usage-existing-project-github-first.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@ cat(res, sep = '\n')
## New RStudio Project via git clone

```{r echo = FALSE, results = "asis"}
text <- readr::read_file("child-clone-a-github-repo.Rmd")
insert <- readr::read_file("child-clone-a-github-repo.Rmd")
res <- knitr::knit_child(text = insert, quiet = TRUE)
cat(res, sep = '\n')
```

Expand Down
3 changes: 2 additions & 1 deletion usage-new-project-github-first.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,8 @@ Make sure you remove the `git clone ...` that shows up at the beginning.
## New RStudio Project via git clone {#new-rstudio-project-via-git}

```{r echo = FALSE, results = "asis"}
text <- readr::read_file("child-create-a-github-repo.Rmd")
insert <- readr::read_file("child-clone-a-github-repo.Rmd")
res <- knitr::knit_child(text = insert, quiet = TRUE)
cat(res, sep = '\n')
```

Expand Down

0 comments on commit d62c3f2

Please sign in to comment.