enhance readme
1 file changed
tree: bd5ddfeababef68e2fcd5176f132f296b30cbd0e
  1. inst/
  2. man/
  3. R/
  4. .gitignore
  5. .Rbuildignore
  6. DESCRIPTION
  7. NAMESPACE
  8. README.md
  9. revealjs.Rproj
README.md

R Markdown Format for reveal.js Presentations

This repository provides an R Markdown custom format for reveal.js HTML presentations.

Usage

To use this format you should install this package along with a recent (>= 0.3.2) version of the rmarkdown package:

library(devtools)
install_github(c("rstudio/rmarkdown", "jjallaire/revealjs"))

You can then use the format within an R Markdown document as follows:

---
title: "My Presentation"
output:
  revealjs::revealjs_presentation
---