forked from juba/rmdformats
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreadthedown.R
105 lines (96 loc) · 4.32 KB
/
readthedown.R
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
#' Convert to an HTML document
#'
#' Format for converting from R Markdown to an HTML document.
#'
#' @details
#' CSS adapted from the readtheorg theme of the org-html-themes project :
#' \url{https://github.com/fniessen/org-html-themes}, which is itself inspired by
#' the Read the docs theme : \url{https://readthedocs.org/}.
#'
#' @param fig_width Default width (in inches) for figures
#' @param fig_height Default width (in inches) for figures
#' @param fig_caption \code{TRUE} to render figures with captions
#' @param highlight Syntax highlighting style. Supported styles include
#' "default", "tango", "pygments", "kate", "monochrome", "espresso",
#' "zenburn", "haddock", and "textmate". Pass \code{NULL} to prevent syntax
#' highlighting.
#' @param lightbox if TRUE, add lightbox effect to content images
#' @param thumbnails if TRUE display content images as thumbnails
#' @param gallery if TRUE and lightbox is TRUE, add a gallery navigation between images in lightbox display
#' @param pandoc_args arguments passed to the pandoc_args argument of rmarkdown \code{\link[rmarkdown]{html_document}}
#' @param toc_depth adjust table of contents depth
#' @param use_bookdown if TRUE, uses \code{\link[bookdown]{html_document2}} instead of \code{\link[rmarkdown]{html_document}}, thus providing numbered sections and cross references
#' @param mathjax set to NULL to disable Mathjax insertion
#' @param ... Additional function arguments passed to R Markdown \code{\link[rmarkdown]{html_document}}
#' @return R Markdown output format to pass to \code{\link[rmarkdown]{render}}
#' @import rmarkdown
#' @import bookdown
#' @importFrom htmltools htmlDependency
#' @export
readthedown <- function(fig_width = 8,
fig_height = 5,
fig_caption = TRUE,
highlight = "kate",
lightbox = FALSE,
thumbnails = FALSE,
gallery = FALSE,
pandoc_args = NULL,
toc_depth = 2,
mathjax = "rmdformats",
use_bookdown = FALSE,
...) {
## js and css dependencies
extra_dependencies <- list(rmarkdown::html_dependency_jquery(),
rmarkdown::html_dependency_jqueryui(),
html_dependency_navigation(),
html_dependency_bootstrap(),
html_dependency_magnific_popup(),
html_dependency_readthedown())
## Force mathjax arguments
if (!is.null(mathjax)) {
pandoc_args <- c(pandoc_args,
"--mathjax",
"--variable", paste0("mathjax-url:", default_mathjax()))
}
if (lightbox) { pandoc_args <- c(pandoc_args, "--variable", "lightbox:true") }
if (thumbnails) { pandoc_args <- c(pandoc_args, "--variable", "thumbnails:true") }
if (gallery) {
pandoc_args <- c(pandoc_args, "--variable", "gallery:true")
} else {
pandoc_args <- c(pandoc_args, "--variable", "gallery:false")
}
## Merge "extra_dependencies"
extra_args <- list(...)
if ("extra_dependencies" %in% names(extra_args)) {
extra_dependencies <- append(extra_dependencies, extra_args[["extra_dependencies"]])
extra_args[["extra_dependencies"]] <- NULL
extra_args[["mathjax"]] <- NULL
}
## Call rmarkdown::html_document
html_document_args <- list(
template = system.file("templates/readthedown/readthedown.html", package = "rmdformats"),
extra_dependencies = extra_dependencies,
fig_width = fig_width,
fig_height = fig_height,
fig_caption = fig_caption,
highlight = highlight,
pandoc_args = pandoc_args,
toc = TRUE,
toc_depth = toc_depth
)
html_document_args <- append(html_document_args, extra_args)
if (use_bookdown) {
html_document_func <- bookdown::html_document2
} else {
html_document_func <- rmarkdown::html_document
}
do.call(html_document_func, html_document_args)
}
# readthedown js and css
html_dependency_readthedown <- function() {
htmltools::htmlDependency(name = "readthedown",
version = "0.1",
src = system.file("templates/readthedown", package = "rmdformats"),
script = "readthedown.js",
stylesheet = c("readthedown.css"))
}