infinite moon reader

I saw an intriguing tweet this afternoon.

When Charles was visiting for #RCurious in June, she had written her slides in xaringan and was raving about infinite moon reader. I assumed it was something far too fancy for us Curious types. But this tweet has me interested.

Is this infinite moon reader thing magical or all hype? What does it mean by live preview? Maybe I don’t have to blogdown::serve_site() in order to see updates on my post.

knitr::include_graphics("CopyOfmoon.jpg")

How to use infinite moon reader

NOTE: here I am talking about blogging etc, not about xaringan slides (which is definitely on my 2019 to learn list)

Step 1.

Install the xaringan package and load it.

install_packages("xaringan")
library(xaringan)

Step 2.

Open a rmd document that you are working on and in the console call xaringan::inf_mr() i.e. infinite moon reader.

Step 3.

Write something and use Ctrl/Command-S to save it. Your document will update automatically in the Viewer pane.

What’s the big deal?

Doesn’t blogdown::serve_site() do that anyway?

Yes, when you are working in blogdown and save, it runs blogdown::serve_site() and updates the Viewer pane. But that is not true of all markdown instances. In radix or when you are just doing an analysis in a markdown document, knitting the file can be slow.

By having xaringan::inf_mr() running in the console, you can have the same functionality of blogdown::serve_site() on all markdown documents. And you can use it in blogdown too, so you don’t need different knitting tricks for different situations.

Is there a downside?

While inf_mr() is occupying your console, it is out of action for other things. But as Charles says, that might not be a bad thing, when you are actually trying to put words on the page.