Convert status box to callout

And combine options
This commit is contained in:
Hadley Wickham 2022-10-05 07:21:20 -05:00
parent 3ebfbf0bd7
commit e64d700040
2 changed files with 12 additions and 20 deletions

View File

@ -13,13 +13,10 @@ knitr::opts_chunk$set(
options( options(
dplyr.print_min = 6, dplyr.print_min = 6,
dplyr.print_max = 6, dplyr.print_max = 6,
stringr.view_n = 10 stringr.view_n = 10,
) # Activate crayon output - temporarily disabled for quarto
# crayon.enabled = TRUE,
# Activate crayon output pillar.bold = TRUE
options(
#crayon.enabled = TRUE,
pillar.bold = TRUE,
) )
ggplot2::theme_set(ggplot2::theme_gray(12)) ggplot2::theme_set(ggplot2::theme_gray(12))
@ -33,8 +30,15 @@ status <- function(type) {
stop("Invalid `type`", call. = FALSE) stop("Invalid `type`", call. = FALSE)
) )
class <- switch(type,
polishing = "note",
restructuring = "important",
drafting = "important",
complete = "note"
)
cat(paste0( cat(paste0(
"::: status\n", "::: callout-", class, "\n",
"You are reading the work-in-progress second edition of R for Data Science. ", "You are reading the work-in-progress second edition of R for Data Science. ",
"This chapter ", status, ". ", "This chapter ", status, ". ",
"You can find the complete first edition at <https://r4ds.had.co.nz>.\n", "You can find the complete first edition at <https://r4ds.had.co.nz>.\n",

View File

@ -12,18 +12,6 @@ img.quarto-cover-image {
box-shadow: 0 .5rem 1rem rgba(0,0,0,.15); box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
} }
/* status box styling */
.status {
border: 2px solid #637238;
padding: 1em;
margin-bottom: 1em;
}
.status p {
margin-bottom: 0;
}
/* Headings ------------------------------------------------------ */ /* Headings ------------------------------------------------------ */
h2 { h2 {