desc <- suppressWarnings(readLines("DESCRIPTION"))
regex <- "(^Version:\\s+)(\\d+\\.\\d+\\.\\d+)"
loc <- grep(regex, desc)
ver <- gsub(regex, "\\2", desc[loc])
#verbadge <- sprintf('<a href="https://img.shields.io/badge/Version-%%s-orange.svg"><img src="https://img.shields.io/badge/Version-%%s-orange.svg" alt="Version"/></a></p>', ver, ver)
verbadge <- ''
````

```r
library(knitr)
knit_hooks$set(htmlcap = function(before, options, envir) {
  if(!before) {
    paste('<p class="caption"><b><em>',options$htmlcap,"</em></b></p>",sep="")
    }
    })
knitr::opts_knit$set(self.contained = TRUE, cache = FALSE, fig.align = 'center')
knitr::opts_chunk$set(fig.path = "tools/figure/")
options(scipen=999)

Build Status Coverage Status r verbadge

%s is...

Installation

To download the development version of %s:

Download the zip ball or tar ball, decompress and run R CMD INSTALL on it, or use the pacman package to install the development version:

if (!require("pacman")) install.packages("pacman")
pacman::p_load_current_gh("%s/%s")

Contact

You are welcome to:
- submit suggestions and bug-reports at: https://github.com/%s/%s/issues
- send a pull request on: https://github.com/%s/%s
- compose a friendly e-mail to: <%s>



trinker/pax documentation built on May 31, 2019, 9:42 p.m.