Skip to content

Instantly share code, notes, and snippets.

@srvanderplas
Created March 24, 2015 17:59
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save srvanderplas/68d73ee4c6fdead4ed32 to your computer and use it in GitHub Desktop.
Save srvanderplas/68d73ee4c6fdead4ed32 to your computer and use it in GitHub Desktop.
Knitr plot fragment hook for reveal.js
c0 <- knitr::knit_hooks$get('chunk')
knitr::knit_hooks$set(
list(
chunk=function(x,options){
if(is.null(options$class) & is.null(options$fragIndex)){
c0(x, options)
} else if(is.null(options$fragIndex)) {
classidx <- which(names(options)=="class")
paste0(
paste0("<span class='", options$class, "'>"),
c0(x, options[-classidx]),
'</span>\n'
)
}
else if(length(options$fragIndex)==1) {
classidx <- which(names(options)%in%c("class", "fragIndex"))
str_replace(
paste0(
paste0("<span class='", options$class, "' data-fragment-index=", options$fragIndex,">"),
c0(x, options[-classidx]),
'</span>\n'
),
"<div class=\"chunk\" id=\"(.*?)\">\\s*<div class=\"rimage default\">(.*)</div>\\s*</div>",
"\\2"
)
} else {
classidx <- which(names(options)%in%c("class", "fragIndex"))
str_replace(
paste0(
paste0("<span class='", options$class, " fade-in' data-fragment-index=", options$fragIndex[1],">"),
paste0(
paste0("<span class='", options$class, " fade-out' data-fragment-index=", options$fragIndex[2],">"),
c0(x, options[-classidx]),
'</span>\n'
),
'</span>\n'
),
"<div class=\"chunk\" id=\"(.*?)\">\\s*<div class=\"rimage default\">(.*)</div>\\s*</div>",
"\\2"
)
}
}
)
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment