The holy grails of information
- https://bookdown.org/yihui/blogdown
- https://gohugo.io/getting-started/configuration/#configure-blackfriday
Courtesy of https://gohugo.io/content-management/shortcodes/:
Options that need to be set:
options(servr.daemon = TRUE, blogdown.author = "Barbara")
Some info right off the bat (for free!!)
This is a post written in plain Markdown (*.md
) instead of R Markdown (*.Rmd
). The major differences are:
- You cannot run any R code in a plain Markdown document, whereas in an R Markdown document, you can embed R code chunks (
```{r}
); - A plain Markdown post is rendered through Blackfriday, and an R Markdown document is compiled by rmarkdown and Pandoc.
There are many differences in syntax between Blackfriday’s Markdown and Pandoc’s Markdown. For example, you can write a task list with Blackfriday but not with Pandoc: