--- title: "Easy API V2: A user-friendly cascading API" output: BiocStyle::html_document: toc: true number_sections: true highlight: haddock css: style.css includes: in_header: logo.md --- ```{r style, echo = FALSE, results = 'asis'} BiocStyle::markdown(css.files = "custom.css") ``` ```{r code, echo = FALSE} code <- function(...) { cat(paste(..., sep = "\n")) } code2 <- function(...) { cat(paste("```markdown", ..., "\n", "```", sep = "\n")) } ``` ```{r global_options, include=FALSE} knitr::opts_chunk$set(eval = FALSE) ``` This call return all API paths, so that you don't need to rely on documentation in the terminal. ```{r} a a$api() a$rate_limit() ```