Nothing
#' Extract blocks of a specified type from a list of blocks
#'
#' @param block_list A list of blocks
#' @param block_type The type of blocks to be extracted
#'
#' @return A list of blocks of the specified type
#'
#' @author Jonathan Chassot
#'
#'
#' @examples
#' \dontrun{
#' # Example 1: Extract 'code' blocks
#' blocks <- list(
#' list(type = "text", content = "Hello world!"),
#' list(type = "code", content = "print('Hello world!')")
#' )
#' extract_blocks(blocks, "code")
#' # Output:
#' # [[1]]
#' # $type
#' # [1] "code"
#' #
#' # $content
#' # [1] "print('Hello world!')"
#'
#' # Example 2: Extract 'text' blocks
#' blocks <- list(
#' list(type = "text", content = "Hello world!"),
#' list(type = "code", content = "print('Hello world!')")
#' )
#' extract_blocks(blocks, "text")
#' # Output:
#' # [[1]]
#' # $type
#' # [1] "text"
#' #
#' # $content
#' # [1] "Hello world!"
#' }
#' @export
extract_blocks <- function(block_list, block_type) {
# Extract the blocks of the specified type
blocks <- lapply(block_list, function(x) {
if (x$type == block_type) {
x
} else {
NULL
}
})
# Remove the NULL elements
blocks <- blocks[!sapply(blocks, is.null)]
# Return the blocks
return(blocks)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.