Skip to content

Commit

Permalink
Use http links for the README
Browse files Browse the repository at this point in the history
Due to pandoc failing to retrieve some https links due to a bug.
  • Loading branch information
jimhester committed Jun 13, 2017
1 parent 82b259e commit 2983e0a
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
16 changes: 8 additions & 8 deletions README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ library(glue)
```

# glue
[![CRAN_Status_Badge](http://www.r-pkg.org/badges/version/glue)](https://cran.r-project.org/package=glue)
[![Travis-CI Build Status](https://travis-ci.org/tidyverse/glue.svg?branch=master)](https://travis-ci.org/tidyverse/glue)
[![Coverage Status](https://img.shields.io/codecov/c/github/tidyverse/glue/master.svg)](https://codecov.io/github/tidyverse/glue?branch=master)
[![AppVeyor Build Status](https://ci.appveyor.com/api/projects/status/github/tidyverse/glue?branch=master&svg=true)](https://ci.appveyor.com/project/tidyverse/glue)
[![CRAN_Status_Badge](http://www.r-pkg.org/badges/version/glue)](http://cran.r-project.org/package=glue)
[![Travis-CI Build Status](http://travis-ci.org/tidyverse/glue.svg?branch=master)](http://travis-ci.org/tidyverse/glue)
[![Coverage Status](http://img.shields.io/codecov/c/github/tidyverse/glue/master.svg)](http://codecov.io/github/tidyverse/glue?branch=master)
[![AppVeyor Build Status](http://ci.appveyor.com/api/projects/status/github/tidyverse/glue?branch=master&svg=true)](http://ci.appveyor.com/project/tidyverse/glue)

Glue strings to data in R. Small, fast, dependency free interpreted string literals.

Expand Down Expand Up @@ -53,7 +53,7 @@ glue('My name is {name},',
anniversary = as.Date("2001-10-12"))
```

##### `glue_data()` is useful with [magrittr](https://cran.r-project.org/package=magrittr) pipes.
##### `glue_data()` is useful with [magrittr](http://cran.r-project.org/package=magrittr) pipes.
```{r}
`%>%` <- magrittr::`%>%`
head(mtcars) %>% glue_data("{rownames(.)} has {hp} hp")
Expand Down Expand Up @@ -117,6 +117,6 @@ glue("{
Some other implementations of string interpolation in R (although not using identical syntax).

- [stringr::str_interp](http://stringr.tidyverse.org/reference/str_interp.html)
- [pystr::pystr_format](https://cran.r-project.org/package=pystr)
- [R.utils::gstring](https://cran.r-project.org/package=R.utils)
- [rprintf](https://cran.r-project.org/package=rprintf)
- [pystr::pystr_format](http://cran.r-project.org/package=pystr)
- [R.utils::gstring](http://cran.r-project.org/package=R.utils)
- [rprintf](http://cran.r-project.org/package=rprintf)
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
glue
====

[![CRAN\_Status\_Badge](http://www.r-pkg.org/badges/version/glue)](https://cran.r-project.org/package=glue) [![Travis-CI Build Status](https://travis-ci.org/tidyverse/glue.svg?branch=master)](https://travis-ci.org/tidyverse/glue) [![Coverage Status](https://img.shields.io/codecov/c/github/tidyverse/glue/master.svg)](https://codecov.io/github/tidyverse/glue?branch=master) [![AppVeyor Build Status](https://ci.appveyor.com/api/projects/status/github/tidyverse/glue?branch=master&svg=true)](https://ci.appveyor.com/project/tidyverse/glue)
[![CRAN\_Status\_Badge](http://www.r-pkg.org/badges/version/glue)](http://cran.r-project.org/package=glue) [![Travis-CI Build Status](http://travis-ci.org/tidyverse/glue.svg?branch=master)](http://travis-ci.org/tidyverse/glue) [![Coverage Status](http://img.shields.io/codecov/c/github/tidyverse/glue/master.svg)](http://codecov.io/github/tidyverse/glue?branch=master) [![AppVeyor Build Status](http://ci.appveyor.com/api/projects/status/github/tidyverse/glue?branch=master&svg=true)](http://ci.appveyor.com/project/tidyverse/glue)

Glue strings to data in R. Small, fast, dependency free interpreted string literals.

Expand Down Expand Up @@ -42,7 +42,7 @@ glue('My name is {name},',
#> My name is Joe, my age next year is 41, my anniversary is Friday, October 12, 2001.
```

##### `glue_data()` is useful with [magrittr](https://cran.r-project.org/package=magrittr) pipes.
##### `glue_data()` is useful with [magrittr](http://cran.r-project.org/package=magrittr) pipes.

``` r
`%>%` <- magrittr::`%>%`
Expand Down Expand Up @@ -131,6 +131,6 @@ Other implementations
Some other implementations of string interpolation in R (although not using identical syntax).

- [stringr::str\_interp](http://stringr.tidyverse.org/reference/str_interp.html)
- [pystr::pystr\_format](https://cran.r-project.org/package=pystr)
- [R.utils::gstring](https://cran.r-project.org/package=R.utils)
- [rprintf](https://cran.r-project.org/package=rprintf)
- [pystr::pystr\_format](http://cran.r-project.org/package=pystr)
- [R.utils::gstring](http://cran.r-project.org/package=R.utils)
- [rprintf](http://cran.r-project.org/package=rprintf)

0 comments on commit 2983e0a

Please sign in to comment.