Sfoglia il codice sorgente

Finally fix all readme image issues

tags/v0.1.1
Garrick Aden-Buie 8 anni fa
parent
commit
334b653a6f
3 ha cambiato i file con 14 aggiunte e 7 eliminazioni
  1. +3
    -4
      README.md
  2. +5
    -1
      vignettes/rmdchunks/_quick-intro.Rmd
  3. +6
    -2
      vignettes/rmdchunks/_tagline-gif.Rmd

+ 3
- 4
README.md Vedi File



Give your [xaringan](https://github.com/yihui/xaringan) slides some Give your [xaringan](https://github.com/yihui/xaringan) slides some
style with **xaringanthemer** within your `slides.Rmd` file without style with **xaringanthemer** within your `slides.Rmd` file without
(much)
CSS.
(much) CSS.


<img src="/Users/garrickaden-buie/Dropbox/R/xaringanthemer/vignettes/images/examples.gif" width="100%" />
<img src="vignettes/images/examples.gif" width="100%" />


- [Installation](#installation) - [Installation](#installation)
- [Quick Intro](#quick-intro) - [Quick Intro](#quick-intro)


<center> <center>


<img src="/Users/garrickaden-buie/Dropbox/R/xaringanthemer/vignettes/images/rmarkdown-template-screenshot.png" width="350px" />
<img src="vignettes/images/rmarkdown-template-screenshot.png" width="350px" />


</center> </center>



+ 5
- 1
vignettes/rmdchunks/_quick-intro.Rmd Vedi File



<center> <center>
```{r out.width="350px"} ```{r out.width="350px"}
knitr::include_graphics(here::here("vignettes/images/rmarkdown-template-screenshot.png"))
if (exists('IS_README') && IS_README) {
knitr::include_graphics("vignettes/images/rmarkdown-template-screenshot.png")
} else {
knitr::include_graphics(here::here("vignettes/images/rmarkdown-template-screenshot.png"))
}
``` ```
</center> </center>



+ 6
- 2
vignettes/rmdchunks/_tagline-gif.Rmd Vedi File



Give your [xaringan] slides some style with **xaringanthemer** within your `slides.Rmd` file without (much) CSS. Give your [xaringan] slides some style with **xaringanthemer** within your `slides.Rmd` file without (much) CSS.


```{r}
knitr::include_graphics(here::here("vignettes/images/examples.gif"))
```{r echo=FALSE}
if (exists('IS_README') && IS_README) {
knitr::include_graphics("vignettes/images/examples.gif")
} else {
knitr::include_graphics(here::here("vignettes/images/examples.gif"))
}
``` ```

Loading…
Annulla
Salva