Hi!
I was wondering if it were possible to take an object of class shiny.tag, convert it to a string and then convert it back to a shiny.tag.
In other words if there's some_function that can do the following:
vbox <- flexdashboard::valueBox("100", "Score")
vbox_txt <- as.character(vbox)
vbox_new <- some_function(vbox_txt)
identical(vbox, vbox_new) == T
Thanks!