@ Yihui,
This sounds great, do you have a minimum working example?
The OP stated "absolute newbie" ;-)
Here is my experience: argument "metaHandler" is missing, with no default
Not sure what that is referring to.
Another question: is there a way to install the development version of shiny alongside the stable version? Can I just rename it shiny-dev and call library("shiny-dev"), would that work? Thanks.
runApp("shiny-latex")
Listening on port 4903
Error in tag("div", list(...)) : could not find function "withMathJax"
This is to install the development version:
if (!require("devtools"))
install.packages("devtools")
devtools::install_github("shiny", "rstudio")
runApp("shiny-latex")
Error in handler(req) :
argument "metaHandler" is missing, with no default
Here is an attempt at a MWE:
# ui.R
basicPage(
withMathJax(),
sliderInput(inputId = 'foo', label = '\\( \\alpha^2 \\)', value = 0, min = -1, max = 1)
)
# server.R
shinyServer(
function(input, output) { # adding a session argument didn't help
##
}
)