Motivation: I often want to paste the results of a quick analysis using R Markdown into a StackExchange site. This includes the R-tag on Stack Overflow, Cross Validated, or even a domain specific analysis on sites like Cognitive Sciences Stack Exchange (e.g., this quick analysis of OECD life index data).
Problems with default conversion:
The default markdown output of knitr is not suitable for inclusion on StackExchange.
The main problems I can see are that
- images are referenced to the local hard drive
- code chunks are not tab or space indented; rather they use github style Markdown (i.e., no indentation)
I.e., the chunks look like this:
```r
some code
```
and output looks like this
```
## some output
## ...
```
There might also be other specific issues to consider, such as
- ensuring tables are included properly
- ensuring that equations are passed correctly for sites that support MathJax like Cross Validated and Cognitive Science Stack Exchange.
Question
What is a good command for converting R Markdown into Markdown (or HTML) suitable for simple inclusion into Stack Exchange sites?
I think an ideal command would be a one-liner that takes an R Markdown file and generates a file where the entire content can be pasted directly into Stack Exchange to yield a well-formatted question or answer.
I share this simple rmd file with a couple of code chunks, a figure, and an equation as a test example.
Initial thoughts: Hosting of images on imgur would presumably sort out the issue with images. This can be done by including the following in the R Markdown file, but it would probably be simpler if this instruction was incorporated into some one-liner command.
``` {r }
opts_knit$set(upload.fun = imgur_upload)
````
It might be worth considering whether HTML or Markdown is the better format for pasting into StackExchange. The markdown package provides a lot of flexibility.