Skip to content

Commit

Permalink
fix problem with mailto links within blog posts
Browse files Browse the repository at this point in the history
  • Loading branch information
jjallaire committed Nov 20, 2018
1 parent d69f18c commit ee5190c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ Install the development version with `devtools::install_github("rstudio/radix")`
* Use standard figure caption CSS treatment for table captions
* Provide default title ("Untitled") for articles that lack one
* Scroll horizontal overflow from code blocks on mobile devices
* Fix problem with mailto links within blog posts

## radix v0.5 (CRAN)

Expand Down
2 changes: 1 addition & 1 deletion R/utils.R
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ url_path <- function(...) {
}

is_url <- function(x) {
grepl("^https?://", x)
grepl("^https?://", x) || grepl("^mailto\\:", x)
}


Expand Down

0 comments on commit ee5190c

Please sign in to comment.