Skip to content

rundel/parsermd

Repository files navigation

parsermd

CRAN status R-CMD-check

The goal of parsermd is to extract the content of an R Markdown file to allow for programmatic interactions with the document’s contents (i.e. code chunks and markdown text). The goal is to capture the fundamental structure of the document and as such we do not attempt to parse every detail of the Rmd. Specifically, the yaml front matter, markdown text, and R code are read as text lines allowing them to be processed using other tools.

Installation

parsermd can be installed from CRAN with:

install.packages("parsermd")

You can install the latest development version of parsermd from GitHub with:

remotes::install_github("rundel/parsermd")
library(parsermd)

Basic Usage

For more details see the getting started vignette or any of the topic specific articles.

(rmd = parsermd::parse_rmd(system.file("examples/minimal.Rmd", package = "parsermd")))
#> ├── YAML [4 fields]
#> ├── Heading [h1] - Setup
#> │   └── Chunk [r, 1 option, 1 line] - setup
#> └── Heading [h1] - Content
#>     ├── Heading [h2] - R Markdown
#>     │   ├── Markdown [6 lines]
#>     │   ├── Chunk [r, 0 options, 1 line] - cars
#>     │   └── Chunk [r, 0 options, 1 line] - unnamed-chunk-1
#>     └── Heading [h2] - Including Plots
#>         ├── Markdown [2 lines]
#>         ├── Chunk [r, 1 option, 1 line] - pressure
#>         └── Markdown [2 lines]

as_tibble(rmd)
#> # A tibble: 12 × 5
#>    sec_h1  sec_h2          type         label           ast           
#>    <chr>   <chr>           <chr>        <chr>           <rmd_ast>     
#>  1 <NA>    <NA>            rmd_yaml     <NA>            <yaml>        
#>  2 Setup   <NA>            rmd_heading  <NA>            <heading [h1]>
#>  3 Setup   <NA>            rmd_chunk    setup           <chunk [r]>   
#>  4 Content <NA>            rmd_heading  <NA>            <heading [h1]>
#>  5 Content R Markdown      rmd_heading  <NA>            <heading [h2]>
#>  6 Content R Markdown      rmd_markdown <NA>            <markdown>    
#>  7 Content R Markdown      rmd_chunk    cars            <chunk [r]>   
#>  8 Content R Markdown      rmd_chunk    unnamed-chunk-1 <chunk [r]>   
#>  9 Content Including Plots rmd_heading  <NA>            <heading [h2]>
#> 10 Content Including Plots rmd_markdown <NA>            <markdown>    
#> 11 Content Including Plots rmd_chunk    pressure        <chunk [r]>   
#> 12 Content Including Plots rmd_markdown <NA>            <markdown>

rmd_select(rmd, by_section("Content"))
#> └── Heading [h1] - Content
#>     ├── Heading [h2] - R Markdown
#>     │   ├── Markdown [6 lines]
#>     │   ├── Chunk [r, 0 options, 1 line] - cars
#>     │   └── Chunk [r, 0 options, 1 line] - unnamed-chunk-1
#>     └── Heading [h2] - Including Plots
#>         ├── Markdown [2 lines]
#>         ├── Chunk [r, 1 option, 1 line] - pressure
#>         └── Markdown [2 lines]

rmd_select(rmd, by_section(c("Content", "*"))) |>
  rmd_select(has_type(c("rmd_chunk", "rmd_heading")))
#> └── Heading [h1] - Content
#>     ├── Heading [h2] - R Markdown
#>     │   ├── Chunk [r, 0 options, 1 line] - cars
#>     │   └── Chunk [r, 0 options, 1 line] - unnamed-chunk-1
#>     └── Heading [h2] - Including Plots
#>         └── Chunk [r, 1 option, 1 line] - pressure

rmd_select(rmd, "pressure")
#> └── Chunk [r, 1 option, 1 line] - pressure

rmd_select(rmd, 1:3)
#> ├── YAML [4 fields]
#> └── Heading [h1] - Setup
#>     └── Chunk [r, 1 option, 1 line] - setup