Image2Pipe <- R6::R6Class(
"Image2Pipe",
inherit = GenericPipe,
public = list(
initialize = function(propertyName = "",
alwaysBeforeDeps = list(),
notAfterDeps = list()) {
super$initialize(propertyName, alwaysBeforeDeps, notAfterDeps)
},
pipe = function(instance) {
instance$obtainSource()
instance
}
)
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.