get_roxygen_description {assertHE} | R Documentation |
Get Title and Description from Parsed List
Description
This function extracts the title and description from a parsed list.
Usage
get_roxygen_description(parsed_list)
Arguments
parsed_list |
A list containing parsed elements. |
Value
A list containing the title and description.
Examples
parsed_list <- list(list(tag = "title", val = "Sample Title"),
list(tag = "description", val = "This is a sample description."))
get_roxygen_description(parsed_list)
[Package assertHE version 1.0.0 Index]