Description Usage Arguments Value Examples
Parse MDS lab files to return the markdown content
1 |
notebook |
A character indicating the path or list of paths to MDS lab files (either.ipynb or .Rmd). If left blank, the function will recursively search for all labs in the working directory based on the file extension. |
A character vector where each element is the content of one markdown cell.
1 2 3 4 5 6 7 | # R markdown
notebook <- system.file("extdata", "dummylab.Rmd", package = "labzenr")
labzenr:::parse_lab(notebook)
# Python notebook
notebook <- system.file("extdata", "dummylab.ipynb", package = "labzenr")
labzenr:::parse_lab(notebook)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.