Nothing
expect_equal(to_json(list(1), auto_unbox=TRUE), "[1]");
expect_equal(to_json(list(I(1)), auto_unbox=TRUE), "[[1]]");
expect_equal(to_json(I(list(1)), auto_unbox=TRUE), "[1]");
expect_equal(to_json(list(x=1)), "{\"x\":[1]}");
expect_equal(to_json(list(x=1), auto_unbox=TRUE), "{\"x\":1}");
expect_equal(to_json(list(x=I(1)), auto_unbox=TRUE), "{\"x\":[1]}");
expect_equal(to_json(list(x=I(list(1))), auto_unbox=TRUE), "{\"x\":[1]}");
expect_equal(to_json(list(x=list(I(1))), auto_unbox=TRUE), "{\"x\":[[1]]}");
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.