View source: R/extract_blocks.R
extract_blocks | R Documentation |
Extract blocks of a specified type from a list of blocks
extract_blocks(block_list, block_type)
block_list |
A list of blocks |
block_type |
The type of blocks to be extracted |
A list of blocks of the specified type
Jonathan Chassot
## Not run:
# 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!"
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.