knitr (version 1.0.5)

knit_patterns: Patterns to match and extract R code in a document

Description

Patterns are regular expressions and will be used in functions like grep to extract R code and chunk options. The object knit_patterns controls the patterns currently used; see the references and examples for usage.

Usage

knit_patterns

Arguments

format

List of 4 $ get :function (name, default = FALSE) $ set :function (...) $ merge :function (values) $ restore:function (target = value)

References

Usage: http://yihui.name/knitr/objects

Components in knit_patterns: http://yihui.name/knitr/patterns

Examples

Run this code
library(knitr)
opat = knit_patterns$get()  # old pattern list (to restore later)

apats = all_patterns  # a list of all built-in patterns
str(apats)
knit_patterns$set(apats[["rnw"]])  # set pattern list from apats

knit_patterns$get(c("chunk.begin", "chunk.end", "inline.code"))

## a customized pattern list; has to empty the original patterns first!
knit_patterns$restore()
## we may want to use this in an HTML document
knit_patterns$set(list(chunk.begin = "<!--helloR\\s+(.*)", chunk.end = "^byeR-->"))
str(knit_patterns$get())

knit_patterns$set(opat)  # put the old patterns back

Run the code above in your browser using DataCamp Workspace