All Projects → rstudio → Blogdown

rstudio / Blogdown

Create Blogs and Websites with R Markdown

Programming Languages

r
7636 projects

Projects that are alternatives of or similar to Blogdown

Wowchemy Hugo Modules
🔥 Hugo website builder, Hugo themes & Hugo CMS. No code, build with widgets! 创建在线课程,学术简历或初创网站。
Stars: ✭ 6,093 (+359.16%)
Mutual labels:  hugo, blog-engine, rstudio, rmarkdown
wowchemy-hugo-themes
🔥 Hugo website builder, Hugo themes & Hugo CMS. No code, easily build with blocks! 创建在线课程,学术简历或初创网站。#OpenScience
Stars: ✭ 6,891 (+419.29%)
Mutual labels:  hugo, rstudio, blog-engine, rmarkdown
rmdTemplates
Rmarkdown templates for reproducible science
Stars: ✭ 112 (-91.56%)
Mutual labels:  rstudio, rmarkdown
learning R
List of resources for learning R
Stars: ✭ 32 (-97.59%)
Mutual labels:  rstudio, rmarkdown
R Course
Una introduccion al analisis de datos con R y R Studio
Stars: ✭ 93 (-92.99%)
Mutual labels:  rmarkdown, rstudio
Wraprmd
RStudio addin for wrapping RMarkdown paragraphs
Stars: ✭ 87 (-93.44%)
Mutual labels:  rmarkdown, rstudio
uiucthemes
RMarkdown Templates for UIUC Theme-Oriented Documents
Stars: ✭ 45 (-96.61%)
Mutual labels:  rstudio, rmarkdown
hugo-apero-docs
Apéro is a Hugo theme for personal websites. This is the documentation site, made with the theme 🍋
Stars: ✭ 56 (-95.78%)
Mutual labels:  hugo, rmarkdown
reportmd
Create multi-page HTML reports in R
Stars: ✭ 23 (-98.27%)
Mutual labels:  rstudio, rmarkdown
Rmdformats
HTML output formats for RMarkdown documents
Stars: ✭ 492 (-62.92%)
Mutual labels:  rmarkdown, rstudio
Jupytext
Jupyter Notebooks as Markdown Documents, Julia, Python or R scripts
Stars: ✭ 4,969 (+274.45%)
Mutual labels:  rmarkdown, rstudio
Posterdown
Use RMarkdown to generate PDF Conference Posters via HTML
Stars: ✭ 602 (-54.63%)
Mutual labels:  rmarkdown, rstudio
youngmetro
R Markdown Beamer Theme Based on sthlm, HSRM, and Metropolis themes
Stars: ✭ 14 (-98.94%)
Mutual labels:  rstudio, rmarkdown
armcompanion
Companion materials for the rstudio::conf 2019 Advanced R Markdown workshop
Stars: ✭ 15 (-98.87%)
Mutual labels:  rstudio, rmarkdown
hugo-documentation-theme
📖 Project Docs / Knowledge Base template for Hugo Website Builder. 创建项目文档
Stars: ✭ 101 (-92.39%)
Mutual labels:  hugo, rstudio
tikz favorites
collection of favorite TikZ graphics
Stars: ✭ 62 (-95.33%)
Mutual labels:  hugo, rmarkdown
Cosx.org
统计之都主站
Stars: ✭ 180 (-86.44%)
Mutual labels:  hugo, rmarkdown
Hugo
The world’s fastest framework for building websites.
Stars: ✭ 55,899 (+4112.43%)
Mutual labels:  hugo, blog-engine
Summarytools
R Package to Quickly and Neatly Summarize Data
Stars: ✭ 390 (-70.61%)
Mutual labels:  rmarkdown, rstudio
Xaringan
Presentation Ninja 幻灯忍者 · 写轮眼
Stars: ✭ 1,129 (-14.92%)
Mutual labels:  rmarkdown, rstudio

blogdown

R-CMD-check CRAN status Coverage status

The goal of the blogdown package is to provide a powerful and customizable website output format for R Markdown. Use dynamic R Markdown documents to build webpages featuring:

  • R code (or other programming languages that knitr supports),

  • automatically rendered output such as graphics, tables, analysis results, and HTML widgets, and

  • technical writing elements such as citations, footnotes, and LaTeX math, enabled by the bookdown package.

By default, blogdown uses Hugo, a popular open-source static website generator, which provides a fast and flexible way to build your site content to be shared online. Other website generators like Jekyll and Hexo are also supported.

A useful feature of blogdown sites, compared to other R Markdown-based websites, is that you may organize your website content (including R Markdown files) within subdirectories. This makes blogdown a good solution not just for blogging or sites about R — it can also be used to create general-purpose websites to communicate about data science, statistics, data visualization, programming, or education.

Book

blogdown: Creating Websites with R Markdown

Installation

You can install the package via CRAN as follows:

install.packages('blogdown')

If you want to use the development version of the blogdown package, you can install the package from GitHub via the remotes package:

remotes::install_github('rstudio/blogdown')

Usage

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.

Getting help

There are two main places to get help:

  1. The RStudio community is a friendly place to ask any questions about blogdown. Be sure to use the blogdown tag.

  2. Stack Overflow is a great source of answers to common blogdown questions. Use the tags [r][blogdown] if you ask a question.

Code of Conduct

Please note that the blogdown project is released with a Contributor Code of Conduct. By contributing to this project, you agree to abide by its terms.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].