Learn R Programming

⚠️There's a newer version (1.20) of this package.Take me there.

blogdown

An open-source (GPL-3) R package to generate static websites based on R Markdown and Hugo. You can install the package via CRAN or GitHub:

## Install from CRAN
install.packages('blogdown')

## Or, install from GitHub
remotes::install_github('rstudio/blogdown')

You may create a new site via the function blogdown::new_site() under an empty directory. It will create a skeleton site, download a Hugo theme from Github, add some sample content, launch a web browser and you will see the new site. The sample blog post hello-world.Rmd should be opened automatically, and you can edit it. The website will be automatically rebuilt and the page will be refreshed after you save the file.

If you use RStudio, you can create a new RStudio project for your website from the menu File -> New Project -> New Directory -> Website using blogdown.

The function blogdown::serve_site() may be the most frequently used function in this package. It builds the website, loads it into your web browser, and automatically refreshes the browser when you update the Markdown or R Markdown files. Do not use the command line hugo server to build or serve the site. It only understands plain Markdown files, and cannot build R Markdown.

You may not be satisfied with the default site created from new_site(). There are two things you may want to do after your first successful experiment with blogdown:

  1. Pick a Hugo theme that you like from https://themes.gohugo.io. All you need is its Github user and repository name, to be passed to the theme argument of new_site().
  2. Add more content (pages or posts), or migrate your existing website.

The full documentation is the blogdown book freely available at https://bookdown.org/yihui/blogdown/. You are expected to read at least the first chapter. You are welcome to send us feedback using Github issues or ask questions on StackOverflow with the blogdown tag.

Copy Link

Version

Install

install.packages('blogdown')

Monthly Downloads

2,147

Version

1.1

License

GPL-3

Issues

Pull Requests

Stars

Forks

Maintainer

Yihui Xie

Last Published

January 19th, 2021

Functions in blogdown (1.1)

filter_newfile

Look for files that have been possibly modified or out-of-date
find_hugo

Find or remove the Hugo executable
find_yaml

Find posts containing the specified metadata
html_page

An R Markdown output format for blogdown web pages
edit_draft

Open a list of draft posts
serve_site

Live preview a site
shortcode

Helper functions to write Hugo shortcodes using the R syntax
install_hugo

Install Hugo
hugo_cmd

Run Hugo commands
read_toml

Read and write TOML data (Tom's Obvious Markup Language)
install_theme

Install a Hugo theme from Github
bundle_site

Convert post files to leaf bundles
build_site

Build a website
clean_duplicates

Clean duplicated output files
check_site

Provide diagnostics for a website project
config_Rprofile

Create or modify the .Rprofile file for a website project
config_netlify

Create the configuration (file) for Netlify
dep_path

A helper function to return a dependency path name
build_dir

Build all Rmd files under a directory
blogdown

The blogdown package