Markdown, which previously displayed fine in html, just using the Rstudio 'knit' button, will no longer be. These are windows, R3.4.1 and updated knitr and rmarkdown, and everything went fine last week. I have a minimal .rprofile and I have no packages downloaded before knitting the minimum document below. "Manual" knit as follows, i.e. GvisTable as well as mathjax displays correctly in html, so today this should not be a problem for my internet connection (I also tried an alternative connection, but not otherwise):
knitr :: markdown (in, out = mD) markdowns :: markdownToHTML (μR, XT)
However, the following (what I think is what the “knit” button does, borrowed from What does “Knit HTML” do in Rstudio 0.98? ) Gives an error
rmarkdown :: render (pp, 'html_document', 'new_titel.html')
The error message is quite long, so I am adding it now, URL censorship, because I lack reputation. I tried searching on Google, SO, etc., but there is no result. Help evaluate.
"C:/Program Files/RStudio/bin/pandoc/pandoc" +RTS -K512m -RTS tmp1.utf8.md --to html --from markdown+autolink_bare_uris+ascii_identifiers+tex_math_single_backslash --output new_titel.html --smart --email-obfuscation none --self-contained --standalone --section-divs --template "censored" --no-highlight --variable highlightjs=1 --variable "theme:bootstrap" --include-in-header "censored" --mathjax --variable "censored"
pandoc.exe: Could not fetch censored
HttpExceptionRequest Request {
host = "www.google.com"
port = 443
secure = True
requestHeaders = []
path = "/jsapi"
queryString = "?callback=displayChartTableID1d98417f33e7"
method = "GET"
proxy = Nothing
rawBody = False
redirectCount = 10
responseTimeout = ResponseTimeoutDefault
requestVersion = HTTP/1.1
}
(InternalException (HandshakeFailed Error_EOF))
Warning: running command '"" +RTS -K512m -RTS tmp1.utf8.md --to html --from markdown+autolink_bare_uris+ascii_identifiers+tex_math_single_backslash --output new_titel.html --smart --email-obfuscation none --self-contained --standalone --section-divs --template "censored" --no-highlight --variable highlightjs=1 --variable "theme:bootstrap" --include-in-header "censored" --mathjax --variable "mathjax-url:censored-not-enough-reputation"' had status 67
Error: pandoc document conversion failed with error 67
--------------- The minimum document that makes a fine if I comment on the gvisTable line or use the markdown route described above rather than rmarkdown:
---
title: "Untitled"
output:
html_document: default
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
```
body
$x=y$
```{r , echo=FALSE, results='asis'}
require(knitr)
kable(mtcars[1:2,])
require(googleVis)
gvisTable(mtcars)
```