├── .Rbuildignore ├── .github ├── .gitignore └── workflows │ ├── R-CMD-check.yaml │ └── pkgdown.yaml ├── .gitignore ├── .vscode └── settings.json ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R ├── RcppExports.R ├── as_ast.R ├── as_document.R ├── as_tibble.R ├── parse_collection.R ├── parse_rmd.R ├── parse_yaml.R ├── parsermd-package.R ├── print_tree.R ├── render.R ├── rmd_ast_append.R ├── rmd_check_template.R ├── rmd_chunk_options.R ├── rmd_classes_s7.R ├── rmd_fenced_div_wrap.R ├── rmd_inline_code_utils.R ├── rmd_insert.R ├── rmd_modify.R ├── rmd_node.R ├── rmd_node_sections.R ├── rmd_select.R ├── rmd_select_helpers.R ├── rmd_shortcode_utils.R ├── rmd_source.R ├── rmd_span_utils.R ├── rmd_template.R ├── tests.R ├── util_other.R ├── util_subset.R ├── util_tibble.R ├── util_tree.R └── zzz.R ├── README.md ├── README.qmd ├── _pkgdown.yml ├── cran-comments.md ├── inst └── examples │ ├── empty_sections.Rmd │ ├── fenced-divs.qmd │ ├── hw01-student.Rmd │ ├── hw01.Rmd │ ├── hw02-complex.Rmd │ ├── hw03-full.qmd │ ├── minimal.Rmd │ ├── raw_attr.Rmd │ └── reverse_sections.Rmd ├── man ├── as_ast.Rd ├── as_document.Rd ├── chunk_options.Rd ├── figures │ ├── README-pressure-1.png │ ├── README │ │ ├── content.svg │ │ ├── example.svg │ │ └── tree.svg │ ├── lifecycle-archived.svg │ ├── lifecycle-defunct.svg │ ├── lifecycle-deprecated.svg │ ├── lifecycle-experimental.svg │ ├── lifecycle-maturing.svg │ ├── lifecycle-questioning.svg │ ├── lifecycle-stable.svg │ ├── lifecycle-superseded.svg │ └── logo │ │ └── parsermd.png ├── inline_code_utils.Rd ├── parse_collection.Rd ├── parse_rmd.Rd ├── parsermd-package.Rd ├── reexports.Rd ├── render.Rd ├── rmd_ast_append.Rd ├── rmd_check_template.Rd ├── rmd_chunk.Rd ├── rmd_classes_s7.Rd ├── rmd_code_block.Rd ├── rmd_code_block_literal.Rd ├── rmd_fenced_div_close.Rd ├── rmd_fenced_div_open.Rd ├── rmd_fenced_div_wrap.Rd ├── rmd_heading.Rd ├── rmd_inline_code.Rd ├── rmd_insert.Rd ├── rmd_markdown.Rd ├── rmd_modify.Rd ├── rmd_node_depth.Rd ├── rmd_node_sections.Rd ├── rmd_node_utilities.Rd ├── rmd_raw_chunk.Rd ├── rmd_select.Rd ├── rmd_select_helpers.Rd ├── rmd_shortcode.Rd ├── rmd_source.Rd ├── rmd_span.Rd ├── rmd_template.Rd ├── shortcode_utils.Rd └── span_utils.Rd ├── parsermd.Rproj ├── src ├── .gitignore ├── RcppExports.cpp ├── parse_R_type.h ├── parse_R_type_ast.h ├── parse_cbrace.h ├── parse_chunk.h ├── parse_chunk_ast.h ├── parse_code_block.h ├── parse_code_block_ast.h ├── parse_code_block_literal.h ├── parse_code_block_literal_ast.h ├── parse_expr.h ├── parse_fenced_div.h ├── parse_fenced_div_ast.h ├── parse_heading.h ├── parse_indent.h ├── parse_inline_code.h ├── parse_inline_code_ast.h ├── parse_markdown.h ├── parse_markdown_ast.h ├── parse_option.h ├── parse_option_ast.h ├── parse_pandoc_attr.h ├── parse_pandoc_attr_ast.h ├── parse_qstring.h ├── parse_rmd.h ├── parse_rmd_ast.h ├── parse_shortcode.h ├── parse_shortcode_ast.h ├── parse_span.h ├── parse_span_ast.h ├── parse_ticks.h ├── parse_yaml.h ├── parser.cpp ├── parser_error_handler.h └── rcpp_wrap.h ├── tests ├── testthat.R └── testthat │ ├── .gitignore │ ├── _snaps │ ├── as_document.md │ ├── as_tibble.md │ ├── error-formatting.md │ ├── parse-chunk.md │ ├── parse-code_block.md │ ├── parse-code_block_literal.md │ ├── parse-fenced_divs.md │ ├── parse-headings.md │ ├── parse-span.md │ ├── parse-yaml.md │ ├── print_tree.md │ ├── rmd_check_template.md │ ├── rmd_chunk_options.md │ ├── rmd_fenced_div_wrap.md │ ├── rmd_insert.md │ ├── rmd_modify.md │ ├── rmd_node.md │ ├── rmd_s7_classes.md │ ├── rmd_select-by_fdiv.md │ ├── rmd_select-by_section.md │ ├── rmd_select-has_code.md │ ├── rmd_select-has_heading.md │ ├── rmd_select-has_inline_code.md │ ├── rmd_select-has_label.md │ ├── rmd_select-has_shortcode.md │ ├── rmd_select-has_type.md │ └── rmd_source.md │ ├── helper-tests.R │ ├── setup.R │ ├── test-as_document-yaml_opts.R │ ├── test-as_document.R │ ├── test-as_tibble.R │ ├── test-error-formatting.R │ ├── test-examples-knitr-round-trip.R │ ├── test-examples-quarto-cli-round-trip.R │ ├── test-examples-quarto-web-round-trip.R │ ├── test-examples-shortcodes.R │ ├── test-examples-spans.R │ ├── test-extract-inline-codes.R │ ├── test-extract-shortcodes.R │ ├── test-parse-R-value.R │ ├── test-parse-chunk.R │ ├── test-parse-chunk_options.R │ ├── test-parse-code_block.R │ ├── test-parse-code_block_literal.R │ ├── test-parse-exprs.R │ ├── test-parse-fenced_divs.R │ ├── test-parse-headings.R │ ├── test-parse-inline_code.R │ ├── test-parse-markdown.R │ ├── test-parse-qstring.R │ ├── test-parse-shortcode.R │ ├── test-parse-span.R │ ├── test-parse-yaml.R │ ├── test-parse-yaml_options.R │ ├── test-parse_rmd.R │ ├── test-print_tree.R │ ├── test-rmd_ast_append.R │ ├── test-rmd_check_template.R │ ├── test-rmd_chunk_options.R │ ├── test-rmd_fenced_div_wrap.R │ ├── test-rmd_insert.R │ ├── test-rmd_modify.R │ ├── test-rmd_node.R │ ├── test-rmd_node_sections.R │ ├── test-rmd_s7_classes.R │ ├── test-rmd_select-by_fdiv.R │ ├── test-rmd_select-by_section.R │ ├── test-rmd_select-has_code.R │ ├── test-rmd_select-has_heading.R │ ├── test-rmd_select-has_inline_code.R │ ├── test-rmd_select-has_label.R │ ├── test-rmd_select-has_option.R │ ├── test-rmd_select-has_shortcode.R │ ├── test-rmd_select-has_type.R │ ├── test-rmd_source.R │ ├── test-rmd_tibble_methods.R │ └── test-util_subset.R └── vignettes ├── .gitignore ├── assignment-with-key.qmd ├── editing-documents.qmd ├── know-your-nodes.qmd ├── parsermd.qmd └── templates.qmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/pkgdown.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/.github/workflows/pkgdown.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2020 2 | COPYRIGHT HOLDER: Colin Rundel 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/RcppExports.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/R/RcppExports.R -------------------------------------------------------------------------------- /R/as_ast.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/R/as_ast.R -------------------------------------------------------------------------------- /R/as_document.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/R/as_document.R -------------------------------------------------------------------------------- /R/as_tibble.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/R/as_tibble.R -------------------------------------------------------------------------------- /R/parse_collection.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/R/parse_collection.R -------------------------------------------------------------------------------- /R/parse_rmd.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/R/parse_rmd.R -------------------------------------------------------------------------------- /R/parse_yaml.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/R/parse_yaml.R -------------------------------------------------------------------------------- /R/parsermd-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/R/parsermd-package.R -------------------------------------------------------------------------------- /R/print_tree.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/R/print_tree.R -------------------------------------------------------------------------------- /R/render.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/R/render.R -------------------------------------------------------------------------------- /R/rmd_ast_append.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/R/rmd_ast_append.R -------------------------------------------------------------------------------- /R/rmd_check_template.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/R/rmd_check_template.R -------------------------------------------------------------------------------- /R/rmd_chunk_options.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/R/rmd_chunk_options.R -------------------------------------------------------------------------------- /R/rmd_classes_s7.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/R/rmd_classes_s7.R -------------------------------------------------------------------------------- /R/rmd_fenced_div_wrap.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/R/rmd_fenced_div_wrap.R -------------------------------------------------------------------------------- /R/rmd_inline_code_utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/R/rmd_inline_code_utils.R -------------------------------------------------------------------------------- /R/rmd_insert.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/R/rmd_insert.R -------------------------------------------------------------------------------- /R/rmd_modify.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/R/rmd_modify.R -------------------------------------------------------------------------------- /R/rmd_node.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/R/rmd_node.R -------------------------------------------------------------------------------- /R/rmd_node_sections.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/R/rmd_node_sections.R -------------------------------------------------------------------------------- /R/rmd_select.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/R/rmd_select.R -------------------------------------------------------------------------------- /R/rmd_select_helpers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/R/rmd_select_helpers.R -------------------------------------------------------------------------------- /R/rmd_shortcode_utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/R/rmd_shortcode_utils.R -------------------------------------------------------------------------------- /R/rmd_source.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/R/rmd_source.R -------------------------------------------------------------------------------- /R/rmd_span_utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/R/rmd_span_utils.R -------------------------------------------------------------------------------- /R/rmd_template.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/R/rmd_template.R -------------------------------------------------------------------------------- /R/tests.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/R/tests.R -------------------------------------------------------------------------------- /R/util_other.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/R/util_other.R -------------------------------------------------------------------------------- /R/util_subset.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/R/util_subset.R -------------------------------------------------------------------------------- /R/util_tibble.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/R/util_tibble.R -------------------------------------------------------------------------------- /R/util_tree.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/R/util_tree.R -------------------------------------------------------------------------------- /R/zzz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/R/zzz.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/README.md -------------------------------------------------------------------------------- /README.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/README.qmd -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/_pkgdown.yml -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/cran-comments.md -------------------------------------------------------------------------------- /inst/examples/empty_sections.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/inst/examples/empty_sections.Rmd -------------------------------------------------------------------------------- /inst/examples/fenced-divs.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/inst/examples/fenced-divs.qmd -------------------------------------------------------------------------------- /inst/examples/hw01-student.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/inst/examples/hw01-student.Rmd -------------------------------------------------------------------------------- /inst/examples/hw01.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/inst/examples/hw01.Rmd -------------------------------------------------------------------------------- /inst/examples/hw02-complex.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/inst/examples/hw02-complex.Rmd -------------------------------------------------------------------------------- /inst/examples/hw03-full.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/inst/examples/hw03-full.qmd -------------------------------------------------------------------------------- /inst/examples/minimal.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/inst/examples/minimal.Rmd -------------------------------------------------------------------------------- /inst/examples/raw_attr.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/inst/examples/raw_attr.Rmd -------------------------------------------------------------------------------- /inst/examples/reverse_sections.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/inst/examples/reverse_sections.Rmd -------------------------------------------------------------------------------- /man/as_ast.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/man/as_ast.Rd -------------------------------------------------------------------------------- /man/as_document.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/man/as_document.Rd -------------------------------------------------------------------------------- /man/chunk_options.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/man/chunk_options.Rd -------------------------------------------------------------------------------- /man/figures/README-pressure-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/man/figures/README-pressure-1.png -------------------------------------------------------------------------------- /man/figures/README/content.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/man/figures/README/content.svg -------------------------------------------------------------------------------- /man/figures/README/example.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/man/figures/README/example.svg -------------------------------------------------------------------------------- /man/figures/README/tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/man/figures/README/tree.svg -------------------------------------------------------------------------------- /man/figures/lifecycle-archived.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/man/figures/lifecycle-archived.svg -------------------------------------------------------------------------------- /man/figures/lifecycle-defunct.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/man/figures/lifecycle-defunct.svg -------------------------------------------------------------------------------- /man/figures/lifecycle-deprecated.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/man/figures/lifecycle-deprecated.svg -------------------------------------------------------------------------------- /man/figures/lifecycle-experimental.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/man/figures/lifecycle-experimental.svg -------------------------------------------------------------------------------- /man/figures/lifecycle-maturing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/man/figures/lifecycle-maturing.svg -------------------------------------------------------------------------------- /man/figures/lifecycle-questioning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/man/figures/lifecycle-questioning.svg -------------------------------------------------------------------------------- /man/figures/lifecycle-stable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/man/figures/lifecycle-stable.svg -------------------------------------------------------------------------------- /man/figures/lifecycle-superseded.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/man/figures/lifecycle-superseded.svg -------------------------------------------------------------------------------- /man/figures/logo/parsermd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/man/figures/logo/parsermd.png -------------------------------------------------------------------------------- /man/inline_code_utils.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/man/inline_code_utils.Rd -------------------------------------------------------------------------------- /man/parse_collection.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/man/parse_collection.Rd -------------------------------------------------------------------------------- /man/parse_rmd.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/man/parse_rmd.Rd -------------------------------------------------------------------------------- /man/parsermd-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/man/parsermd-package.Rd -------------------------------------------------------------------------------- /man/reexports.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/man/reexports.Rd -------------------------------------------------------------------------------- /man/render.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/man/render.Rd -------------------------------------------------------------------------------- /man/rmd_ast_append.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/man/rmd_ast_append.Rd -------------------------------------------------------------------------------- /man/rmd_check_template.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/man/rmd_check_template.Rd -------------------------------------------------------------------------------- /man/rmd_chunk.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/man/rmd_chunk.Rd -------------------------------------------------------------------------------- /man/rmd_classes_s7.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/man/rmd_classes_s7.Rd -------------------------------------------------------------------------------- /man/rmd_code_block.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/man/rmd_code_block.Rd -------------------------------------------------------------------------------- /man/rmd_code_block_literal.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/man/rmd_code_block_literal.Rd -------------------------------------------------------------------------------- /man/rmd_fenced_div_close.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/man/rmd_fenced_div_close.Rd -------------------------------------------------------------------------------- /man/rmd_fenced_div_open.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/man/rmd_fenced_div_open.Rd -------------------------------------------------------------------------------- /man/rmd_fenced_div_wrap.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/man/rmd_fenced_div_wrap.Rd -------------------------------------------------------------------------------- /man/rmd_heading.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/man/rmd_heading.Rd -------------------------------------------------------------------------------- /man/rmd_inline_code.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/man/rmd_inline_code.Rd -------------------------------------------------------------------------------- /man/rmd_insert.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/man/rmd_insert.Rd -------------------------------------------------------------------------------- /man/rmd_markdown.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/man/rmd_markdown.Rd -------------------------------------------------------------------------------- /man/rmd_modify.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/man/rmd_modify.Rd -------------------------------------------------------------------------------- /man/rmd_node_depth.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/man/rmd_node_depth.Rd -------------------------------------------------------------------------------- /man/rmd_node_sections.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/man/rmd_node_sections.Rd -------------------------------------------------------------------------------- /man/rmd_node_utilities.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/man/rmd_node_utilities.Rd -------------------------------------------------------------------------------- /man/rmd_raw_chunk.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/man/rmd_raw_chunk.Rd -------------------------------------------------------------------------------- /man/rmd_select.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/man/rmd_select.Rd -------------------------------------------------------------------------------- /man/rmd_select_helpers.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/man/rmd_select_helpers.Rd -------------------------------------------------------------------------------- /man/rmd_shortcode.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/man/rmd_shortcode.Rd -------------------------------------------------------------------------------- /man/rmd_source.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/man/rmd_source.Rd -------------------------------------------------------------------------------- /man/rmd_span.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/man/rmd_span.Rd -------------------------------------------------------------------------------- /man/rmd_template.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/man/rmd_template.Rd -------------------------------------------------------------------------------- /man/shortcode_utils.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/man/shortcode_utils.Rd -------------------------------------------------------------------------------- /man/span_utils.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/man/span_utils.Rd -------------------------------------------------------------------------------- /parsermd.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/parsermd.Rproj -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/src/.gitignore -------------------------------------------------------------------------------- /src/RcppExports.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/src/RcppExports.cpp -------------------------------------------------------------------------------- /src/parse_R_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/src/parse_R_type.h -------------------------------------------------------------------------------- /src/parse_R_type_ast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/src/parse_R_type_ast.h -------------------------------------------------------------------------------- /src/parse_cbrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/src/parse_cbrace.h -------------------------------------------------------------------------------- /src/parse_chunk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/src/parse_chunk.h -------------------------------------------------------------------------------- /src/parse_chunk_ast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/src/parse_chunk_ast.h -------------------------------------------------------------------------------- /src/parse_code_block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/src/parse_code_block.h -------------------------------------------------------------------------------- /src/parse_code_block_ast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/src/parse_code_block_ast.h -------------------------------------------------------------------------------- /src/parse_code_block_literal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/src/parse_code_block_literal.h -------------------------------------------------------------------------------- /src/parse_code_block_literal_ast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/src/parse_code_block_literal_ast.h -------------------------------------------------------------------------------- /src/parse_expr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/src/parse_expr.h -------------------------------------------------------------------------------- /src/parse_fenced_div.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/src/parse_fenced_div.h -------------------------------------------------------------------------------- /src/parse_fenced_div_ast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/src/parse_fenced_div_ast.h -------------------------------------------------------------------------------- /src/parse_heading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/src/parse_heading.h -------------------------------------------------------------------------------- /src/parse_indent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/src/parse_indent.h -------------------------------------------------------------------------------- /src/parse_inline_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/src/parse_inline_code.h -------------------------------------------------------------------------------- /src/parse_inline_code_ast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/src/parse_inline_code_ast.h -------------------------------------------------------------------------------- /src/parse_markdown.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/src/parse_markdown.h -------------------------------------------------------------------------------- /src/parse_markdown_ast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/src/parse_markdown_ast.h -------------------------------------------------------------------------------- /src/parse_option.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/src/parse_option.h -------------------------------------------------------------------------------- /src/parse_option_ast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/src/parse_option_ast.h -------------------------------------------------------------------------------- /src/parse_pandoc_attr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/src/parse_pandoc_attr.h -------------------------------------------------------------------------------- /src/parse_pandoc_attr_ast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/src/parse_pandoc_attr_ast.h -------------------------------------------------------------------------------- /src/parse_qstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/src/parse_qstring.h -------------------------------------------------------------------------------- /src/parse_rmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/src/parse_rmd.h -------------------------------------------------------------------------------- /src/parse_rmd_ast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/src/parse_rmd_ast.h -------------------------------------------------------------------------------- /src/parse_shortcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/src/parse_shortcode.h -------------------------------------------------------------------------------- /src/parse_shortcode_ast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/src/parse_shortcode_ast.h -------------------------------------------------------------------------------- /src/parse_span.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/src/parse_span.h -------------------------------------------------------------------------------- /src/parse_span_ast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/src/parse_span_ast.h -------------------------------------------------------------------------------- /src/parse_ticks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/src/parse_ticks.h -------------------------------------------------------------------------------- /src/parse_yaml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/src/parse_yaml.h -------------------------------------------------------------------------------- /src/parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/src/parser.cpp -------------------------------------------------------------------------------- /src/parser_error_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/src/parser_error_handler.h -------------------------------------------------------------------------------- /src/rcpp_wrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/src/rcpp_wrap.h -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/.gitignore: -------------------------------------------------------------------------------- 1 | examples/ 2 | -------------------------------------------------------------------------------- /tests/testthat/_snaps/as_document.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/tests/testthat/_snaps/as_document.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/as_tibble.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/tests/testthat/_snaps/as_tibble.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/error-formatting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/tests/testthat/_snaps/error-formatting.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/parse-chunk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/tests/testthat/_snaps/parse-chunk.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/parse-code_block.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/tests/testthat/_snaps/parse-code_block.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/parse-code_block_literal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/tests/testthat/_snaps/parse-code_block_literal.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/parse-fenced_divs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/tests/testthat/_snaps/parse-fenced_divs.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/parse-headings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/tests/testthat/_snaps/parse-headings.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/parse-span.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/tests/testthat/_snaps/parse-span.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/parse-yaml.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/tests/testthat/_snaps/parse-yaml.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/print_tree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/tests/testthat/_snaps/print_tree.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/rmd_check_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/tests/testthat/_snaps/rmd_check_template.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/rmd_chunk_options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/tests/testthat/_snaps/rmd_chunk_options.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/rmd_fenced_div_wrap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/tests/testthat/_snaps/rmd_fenced_div_wrap.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/rmd_insert.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/tests/testthat/_snaps/rmd_insert.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/rmd_modify.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/tests/testthat/_snaps/rmd_modify.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/rmd_node.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/tests/testthat/_snaps/rmd_node.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/rmd_s7_classes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/tests/testthat/_snaps/rmd_s7_classes.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/rmd_select-by_fdiv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/tests/testthat/_snaps/rmd_select-by_fdiv.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/rmd_select-by_section.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/tests/testthat/_snaps/rmd_select-by_section.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/rmd_select-has_code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/tests/testthat/_snaps/rmd_select-has_code.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/rmd_select-has_heading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/tests/testthat/_snaps/rmd_select-has_heading.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/rmd_select-has_inline_code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/tests/testthat/_snaps/rmd_select-has_inline_code.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/rmd_select-has_label.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/tests/testthat/_snaps/rmd_select-has_label.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/rmd_select-has_shortcode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/tests/testthat/_snaps/rmd_select-has_shortcode.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/rmd_select-has_type.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/tests/testthat/_snaps/rmd_select-has_type.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/rmd_source.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/tests/testthat/_snaps/rmd_source.md -------------------------------------------------------------------------------- /tests/testthat/helper-tests.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/tests/testthat/helper-tests.R -------------------------------------------------------------------------------- /tests/testthat/setup.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/tests/testthat/setup.R -------------------------------------------------------------------------------- /tests/testthat/test-as_document-yaml_opts.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/tests/testthat/test-as_document-yaml_opts.R -------------------------------------------------------------------------------- /tests/testthat/test-as_document.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/tests/testthat/test-as_document.R -------------------------------------------------------------------------------- /tests/testthat/test-as_tibble.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/tests/testthat/test-as_tibble.R -------------------------------------------------------------------------------- /tests/testthat/test-error-formatting.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/tests/testthat/test-error-formatting.R -------------------------------------------------------------------------------- /tests/testthat/test-examples-knitr-round-trip.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/tests/testthat/test-examples-knitr-round-trip.R -------------------------------------------------------------------------------- /tests/testthat/test-examples-quarto-cli-round-trip.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/tests/testthat/test-examples-quarto-cli-round-trip.R -------------------------------------------------------------------------------- /tests/testthat/test-examples-quarto-web-round-trip.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/tests/testthat/test-examples-quarto-web-round-trip.R -------------------------------------------------------------------------------- /tests/testthat/test-examples-shortcodes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/tests/testthat/test-examples-shortcodes.R -------------------------------------------------------------------------------- /tests/testthat/test-examples-spans.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/tests/testthat/test-examples-spans.R -------------------------------------------------------------------------------- /tests/testthat/test-extract-inline-codes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/tests/testthat/test-extract-inline-codes.R -------------------------------------------------------------------------------- /tests/testthat/test-extract-shortcodes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/tests/testthat/test-extract-shortcodes.R -------------------------------------------------------------------------------- /tests/testthat/test-parse-R-value.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/tests/testthat/test-parse-R-value.R -------------------------------------------------------------------------------- /tests/testthat/test-parse-chunk.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/tests/testthat/test-parse-chunk.R -------------------------------------------------------------------------------- /tests/testthat/test-parse-chunk_options.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/tests/testthat/test-parse-chunk_options.R -------------------------------------------------------------------------------- /tests/testthat/test-parse-code_block.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/tests/testthat/test-parse-code_block.R -------------------------------------------------------------------------------- /tests/testthat/test-parse-code_block_literal.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/tests/testthat/test-parse-code_block_literal.R -------------------------------------------------------------------------------- /tests/testthat/test-parse-exprs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/tests/testthat/test-parse-exprs.R -------------------------------------------------------------------------------- /tests/testthat/test-parse-fenced_divs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/tests/testthat/test-parse-fenced_divs.R -------------------------------------------------------------------------------- /tests/testthat/test-parse-headings.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/tests/testthat/test-parse-headings.R -------------------------------------------------------------------------------- /tests/testthat/test-parse-inline_code.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/tests/testthat/test-parse-inline_code.R -------------------------------------------------------------------------------- /tests/testthat/test-parse-markdown.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/tests/testthat/test-parse-markdown.R -------------------------------------------------------------------------------- /tests/testthat/test-parse-qstring.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/tests/testthat/test-parse-qstring.R -------------------------------------------------------------------------------- /tests/testthat/test-parse-shortcode.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/tests/testthat/test-parse-shortcode.R -------------------------------------------------------------------------------- /tests/testthat/test-parse-span.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/tests/testthat/test-parse-span.R -------------------------------------------------------------------------------- /tests/testthat/test-parse-yaml.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/tests/testthat/test-parse-yaml.R -------------------------------------------------------------------------------- /tests/testthat/test-parse-yaml_options.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/tests/testthat/test-parse-yaml_options.R -------------------------------------------------------------------------------- /tests/testthat/test-parse_rmd.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/tests/testthat/test-parse_rmd.R -------------------------------------------------------------------------------- /tests/testthat/test-print_tree.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/tests/testthat/test-print_tree.R -------------------------------------------------------------------------------- /tests/testthat/test-rmd_ast_append.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/tests/testthat/test-rmd_ast_append.R -------------------------------------------------------------------------------- /tests/testthat/test-rmd_check_template.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/tests/testthat/test-rmd_check_template.R -------------------------------------------------------------------------------- /tests/testthat/test-rmd_chunk_options.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/tests/testthat/test-rmd_chunk_options.R -------------------------------------------------------------------------------- /tests/testthat/test-rmd_fenced_div_wrap.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/tests/testthat/test-rmd_fenced_div_wrap.R -------------------------------------------------------------------------------- /tests/testthat/test-rmd_insert.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/tests/testthat/test-rmd_insert.R -------------------------------------------------------------------------------- /tests/testthat/test-rmd_modify.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/tests/testthat/test-rmd_modify.R -------------------------------------------------------------------------------- /tests/testthat/test-rmd_node.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/tests/testthat/test-rmd_node.R -------------------------------------------------------------------------------- /tests/testthat/test-rmd_node_sections.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/tests/testthat/test-rmd_node_sections.R -------------------------------------------------------------------------------- /tests/testthat/test-rmd_s7_classes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/tests/testthat/test-rmd_s7_classes.R -------------------------------------------------------------------------------- /tests/testthat/test-rmd_select-by_fdiv.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/tests/testthat/test-rmd_select-by_fdiv.R -------------------------------------------------------------------------------- /tests/testthat/test-rmd_select-by_section.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/tests/testthat/test-rmd_select-by_section.R -------------------------------------------------------------------------------- /tests/testthat/test-rmd_select-has_code.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/tests/testthat/test-rmd_select-has_code.R -------------------------------------------------------------------------------- /tests/testthat/test-rmd_select-has_heading.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/tests/testthat/test-rmd_select-has_heading.R -------------------------------------------------------------------------------- /tests/testthat/test-rmd_select-has_inline_code.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/tests/testthat/test-rmd_select-has_inline_code.R -------------------------------------------------------------------------------- /tests/testthat/test-rmd_select-has_label.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/tests/testthat/test-rmd_select-has_label.R -------------------------------------------------------------------------------- /tests/testthat/test-rmd_select-has_option.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/tests/testthat/test-rmd_select-has_option.R -------------------------------------------------------------------------------- /tests/testthat/test-rmd_select-has_shortcode.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/tests/testthat/test-rmd_select-has_shortcode.R -------------------------------------------------------------------------------- /tests/testthat/test-rmd_select-has_type.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/tests/testthat/test-rmd_select-has_type.R -------------------------------------------------------------------------------- /tests/testthat/test-rmd_source.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/tests/testthat/test-rmd_source.R -------------------------------------------------------------------------------- /tests/testthat/test-rmd_tibble_methods.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/tests/testthat/test-rmd_tibble_methods.R -------------------------------------------------------------------------------- /tests/testthat/test-util_subset.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/tests/testthat/test-util_subset.R -------------------------------------------------------------------------------- /vignettes/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.R 3 | 4 | /.quarto/ 5 | *_files 6 | -------------------------------------------------------------------------------- /vignettes/assignment-with-key.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/vignettes/assignment-with-key.qmd -------------------------------------------------------------------------------- /vignettes/editing-documents.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/vignettes/editing-documents.qmd -------------------------------------------------------------------------------- /vignettes/know-your-nodes.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/vignettes/know-your-nodes.qmd -------------------------------------------------------------------------------- /vignettes/parsermd.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/vignettes/parsermd.qmd -------------------------------------------------------------------------------- /vignettes/templates.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rundel/parsermd/HEAD/vignettes/templates.qmd --------------------------------------------------------------------------------