Skip to contents

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

if (FALSE) { # \dontrun{
parsed_list <- list(list(tag = "title", val = "Sample Title"),
                     list(tag = "description", val = "This is a sample description."))
get_roxygen_description(parsed_list)
} # }