You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
library(xml2)
path<- tempfile()
long<- paste0("start", strrep("x", 12e6), "end")
nchar(long)
#> [1] 12000008
cat(
"<html><body>\n<script type=\"application/json\">",
long,
"</script>\n</body></html>\n",
file=path,
sep=""
)
html<- read_html(path)
xml<- read_xml(path)
#> Warning in read_xml.character(path): xmlSAX2Characters: huge text nod [2]#> Error in read_xml.character(path): Extra content at the end of the document [5]