File: render_site.Rd

package info (click to toggle)
r-cran-rmarkdown 2.20%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 8,028 kB
  • sloc: javascript: 5,656; sh: 24; makefile: 17
file content (209 lines) | stat: -rw-r--r-- 8,179 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/render_site.R
\name{render_site}
\alias{render_site}
\alias{clean_site}
\alias{site_generator}
\alias{site_config}
\alias{default_site_generator}
\title{Render multiple documents as a website}
\usage{
render_site(
  input = ".",
  output_format = "all",
  envir = parent.frame(),
  quiet = FALSE,
  encoding = "UTF-8"
)

clean_site(input = ".", preview = TRUE, quiet = FALSE, encoding = "UTF-8")

site_generator(input = ".", output_format = NULL)

site_config(input = ".", encoding = "UTF-8")

default_site_generator(input, output_format_filter = NULL, ...)
}
\arguments{
\item{input}{Website directory (or the name of a file within the directory).}

\item{output_format}{R Markdown format to convert to (defaults to "all").}

\item{envir}{The environment in which the code chunks are to be evaluated
during knitting (can use \code{\link{new.env}} to guarantee an empty new
environment).}

\item{quiet}{\code{TRUE} to suppress messages and other output.}

\item{encoding}{Ignored. The encoding is always assumed to be UTF-8.}

\item{preview}{Whether to list the files to be removed rather than actually
removing them. Defaulting to TRUE to prevent removing without notice.}

\item{output_format_filter}{An optional function which is passed the
input file and the output format, and which returns a (potentially
modified) output format.}

\item{...}{Currently unused.}
}
\value{
\code{render_site} returns the name of the site output file (relative
  to the input directory). \code{clean_site} returns the names of the
  generated files removed during cleaning. \code{site_config} returns the
  contents of _site.yml as an R list. \code{default_site_generator} returns
  the default site generator for R Markdown websites.
}
\description{
Render all of the R Markdown documents within a directory as a website.
}
\details{
The \code{render_site} function enables you to render a collection of
markdown documents within a directory as a website. There are two
requirements for a directory to be rendered as a website:
\enumerate{
  \item{It must contain either an "index.Rmd" or "index.md" file.}
  \item{It must contain a site configuration file ("_site.yml").}
}

The most minimal valid website is an empty "index.Rmd" and an empty
"_site.yml". With this configuration a single empty webpage would be
generated via a call to \code{render_site}. If you add additional markdown
documents to the directory they will also be rendered. By default a site is
rendered in the following fashion:

\enumerate{
  \item{R Markdown (.Rmd) and plain markdown (.md) files in the root
  directory are rendered. Note however that markdown files beginning with "_"
  are not rendered (this is a convention to designate files that are included
  by top level documents).}
  \item{All output and supporting files are copied to a "_site" subdirectory
  of the website directory (this is configurable, see discussion below).}
  \item{The following files are \bold{not} copied to the "_site"
  sub-directory:
    \itemize{
      \item{Files beginning with "." (hidden files).}
      \item{Files beginning with "_"}
      \item{Files known to contain R source code (e.g. ".R", ".s", ".Rmd"), R
      data (e.g. ".RData", ".rds"), configuration data (e.g. ".Rproj",
      "rsconnect") or package project management data (e.g.
      "packrat", "renv").}
    }
    Note that you can override which files are included or excluded via
    settings in "_site.yml" (described below).}
  \item{Normally R Markdown renders documents as self-contained HTML.
  However, \code{render_site} ensures that dependencies (e.g. CSS,
  JavaScript, images, etc.) remain in external files. CSS/JavaScript
  libraries are copied to a "site_libs" sub-directory and plots/images are
  copied to "_files" sub-directories.}
}

You can remove the files generated by \code{render_site} using the
\code{clean_site} function.
}
\section{Configuration}{

A "_site.yml" file can be used to configure the behavior of site generation.
Here is an example configuration file:

\preformatted{
name: my-website
output_dir: _site
include: ["demo.R"]
exclude: ["docs.txt", "*.csv"]
navbar:
  title: "My Website"
  left:
    - text: "Home"
      href: index.html
    - text: "About"
      href: about.html
output:
  html_document:
    toc: true
    highlight: textmate
}

The \code{name} field provides a suggested URL path for your website when it
is published (by default this is just the name of the directory containing
the site). The \code{output_dir} indicates which directory to copy site
content into ("_site" is the default if none is specified). Note that this
can be "." to keep all content within the root website directory alongside
the source code.

The \code{include} and \code{exclude} fields enable you to override the
default behavior vis-a-vis what files are copied into the "_site" directory
(wildcards can be used as in the above example).

The \code{navbar} field can be used to define a navigation bar for websites
based on the \code{\link{html_document}} format.

Finally, the \code{output} field enables you to specify output options that
are common to all documents within the website (you can also still provide
local options within each document that override any common options).

\code{new_session: true} causes each file to be rendered in a new R session.
This prevents the masking problem that arises when different files use
functions from different packages (namespaces) that share a common name, such
as \code{here::here} and \code{lubridate::here} or \code{dplyr::filter} and
\code{MASS::filter}. The default behaviour of \code{render_site} is to use a
common R session.

\code{autospin: true} causes \code{.R} files to be spinned and rendered
(as well as \code{.Rmd} files). If \code{autospin} is set to false (the default),
\code{.R} files will not be spinned nor rendered. \code{autospin} can also
enumerate a list of .R files to be spinned and rendered.
}

\section{Custom Site Generation}{

The behavior of the default site generation function
(\code{rmarkdown::default_site}) is described above. It is also possible to
define a custom site generator that has alternate behavior. A site generator
is an R function that is bound to by including it in the "site:" field of the
"index.Rmd" or "index.md" file. For example:

\preformatted{
title: "My Book"
output: bookdown::gitbook
site: bookdown::bookdown_site
}

A site generation function should return a list with the following elements:
\describe{
  \item{\code{name}:}{The name for the website (e.g. the parent directory
  name).}
  \item{\code{output_dir}:}{The directory where the website output is written
  to. This path should be relative to the site directory (e.g. "." or
  "_site")}
  \item{\code{render}:}{An R function that can be called to generate the
  site. The function should accept the \code{input_file},
  \code{output_format}, \code{envir}, and \code{quiet} arguments.}
  \item{\code{clean}:}{An R function that returns relative paths to the files
  generated by \code{render_site} (these files are the ones which will be
  removed by the \code{clean_site} function.}
  \item{\code{subdirs} \emph{(optional)}:}{A logical flag that indicates if
  the generator supports nested source files in subdirectories of the project
  (\code{TRUE}) or only at the project root (\code{FALSE}). (e.g.
  \code{blogdown:::blogdown_site()})}
}

Note that the \code{input_file} argument will be \code{NULL} when the entire
site is being generated. It will be set to a specific file name if a
front-end tool is attempting to preview it (e.g. RStudio IDE via the Knit
button).

When \code{quiet = FALSE} the \code{render} function should also print a line
of output using the \code{\link{message}} function indicating which output
file should be previewed, for example:

\preformatted{if (!quiet)
  message("\nOutput created: ", output)
}

Emitting this line enables front-ends like RStudio to determine which file
they should open to preview the website.

See the source code of the \code{rmarkdown::default_site} function for a
example of a site generation function.
}