gitbook_config()
is a helper function to specify the config
argument in
bookdown::gitbook()
, as described in the bookdown book.
gitbook_config(
toc_collapse = yml_blank(),
toc_scroll_highlight = yml_blank(),
toc_before = yml_blank(),
toc_after = yml_blank(),
toolbar_position = yml_blank(),
edit = yml_blank(),
download = yml_blank(),
search = yml_blank(),
fontsettings_theme = yml_blank(),
fontsettings_family = yml_blank(),
fontsettings_size = yml_blank(),
sharing_facebook = yml_blank(),
sharing_twitter = yml_blank(),
sharing_google = yml_blank(),
sharing_linkedin = yml_blank(),
sharing_weibo = yml_blank(),
sharing_instapaper = yml_blank(),
sharing_vk = yml_blank(),
sharing_all = yml_blank(),
...
)
Collapse some items initially when a page is loaded via
the collapse option. Its possible values are "subsection" (the default),
"section", "none", or NULL
.
Logical. Enable highlighting of TOC items as you
scroll the book body? The default is TRUE
.
a character vector of HTML to add more items
before and after the TOC using the HTML tag <li>
. These items will be
separated from the TOC using a horizontal divider.
The toolbar position: "fixed" or "static." The default ("fixed") is that the toolbar will be fixed at the top of the page, whereas when set to "static" the toolbar will not scroll with the page.
If not empty, an edit button will be added to the toolbar.
This option takes either a character vector or a list of
character vectors with the length of each vector being 2. When it is a
character vector, it should be either a vector of filenames or filename
extensions. When you only provide the filename extensions, the filename is
derived from the book filename of the configuration file _bookdown.yml
Include a search bar?
The theme. "White" (the default), "Sepia", or "Night".
The font family. "sans" (the default) or "serif".
The font size. Default is 2.
Logical. Include Facebook share link? Default is
TRUE
.
Logical. Include Twitter share link? Default is
TRUE
.
Logical. Include Google share link? Default is FALSE
.
Logical. Include LinkedIn share link? Default is
FALSE
.
Logical. Include Weibo share link? Default is FALSE
.
Logical. Include Instapaper share link? Default is
FALSE
.
Logical. Include VK share link? Default is FALSE
.
Logical. Include all share links? Default is FALSE
.
additional named R objects, such as characters or lists, to transform into YAML
a list to use in the config
argument of bookdown::gitbook()
Other bookdown:
yml_bookdown_opts()