From 8511fcc9ecfdb74b7c55943457d4e46bfccf90d8 Mon Sep 17 00:00:00 2001 From: ledell Date: Fri, 14 Apr 2017 18:12:37 -0700 Subject: [PATCH] Fixed code blocks --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index e2e715f1..efff1f03 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ meetupr: R interface to the meetup.com API ## Installation -``` +```{r} # install.packages("devtools") library(devtools) devtools::install_github("rladies/meetupr") @@ -19,7 +19,7 @@ devtools::install_github("rladies/meetupr") To use this package, you will first need to get your meetup API key. To do so, go to this link: [https://secure.meetup.com/meetup_api/key/](https://secure.meetup.com/meetup_api/key/) -``` +```{r} library(meetupr) api_key <- "INSERT_KEY_HERE" @@ -30,7 +30,7 @@ events <- get_events(group_name, api_key) When you have your Meetup API key, you can set up an environment variable, by adding the following to your `.Rprofile`: -``` +```{r} Sys.setenv(meetup_api_key = "INSERT_KEY_HERE") ```