https://github.com/cran/odfWeave
Raw File
Tip revision: 5c43ff1529d0d8ba9646f709a01568c89487eae6 authored by Max Kuhn on 15 November 2012, 00:00:00 UTC
version 0.8.2
Tip revision: 5c43ff1
odfWeaveControl.R
odfWeaveControl <- function(
   zipCmd = c("zip -r $$file$$ .", "unzip -o $$file$$"),
   cleanup = ! debug,
   verbose = TRUE,
   debug = FALSE)
{
	# pass ... args to figGen here?
   list(
      zipCmd = zipCmd,
      cleanup = cleanup,
      verbose = verbose,
      debug = debug)
}

back to top