├── .Rbuildignore ├── .github ├── .gitignore ├── CONTRIBUTING.md ├── issue_template.md ├── pull_request_template.md └── workflows │ ├── check-full.yaml │ ├── rhub.yaml │ └── test-coverage.yaml ├── .gitignore ├── CRAN-SUBMISSION ├── DESCRIPTION ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R ├── add_md.R ├── asis-nodes.R ├── attr-nodes.R ├── class-yarn.R ├── find_between.R ├── get_protected.R ├── md_ns.R ├── resolve-links.R ├── show.R ├── stylesheet.R ├── tinkr-package.R ├── to_md.R ├── to_xml.R ├── utils-string.R └── utils.R ├── README.Rmd ├── README.md ├── _pkgdown.yml ├── air.toml ├── codecov.yml ├── cran-comments.md ├── inst ├── WORDLIST ├── extdata │ ├── basic-curly.md │ ├── basic-curly2.Rmd │ ├── basic-math.md │ ├── bigsample.md │ ├── bigsample_after_loop.md │ ├── example-chunk-not-json.md │ ├── example-json.md │ ├── example-toml.md │ ├── example1.md │ ├── example2.Rmd │ ├── fenced-divs.md │ ├── link-test.md │ ├── math-example.md │ ├── show-example.md │ ├── table.md │ └── xml_table.xml ├── presub.md ├── scripts │ ├── rmd_doc.Rmd │ ├── rmd_doc.docx │ ├── rmd_doc_loop.Rmd │ ├── rmd_doc_pandoc.Rmd │ ├── roweb2_headers.R │ ├── samples.R │ ├── test.md │ ├── unknit.R │ └── xml_table.R └── stylesheets │ ├── xml2md.xsl │ └── xml2md_gfm.xsl ├── man ├── add_md.Rd ├── add_nodes_to_body.Rd ├── figures │ ├── lifecycle-deprecated.svg │ ├── lifecycle-experimental.svg │ ├── lifecycle-stable.svg │ └── lifecycle-superseded.svg ├── find_between.Rd ├── get_protected.Rd ├── insert_md.Rd ├── isolate_nodes.Rd ├── md_ns.Rd ├── md_to_xml.Rd ├── protect_curly.Rd ├── protect_fences.Rd ├── protect_inline_math.Rd ├── protect_math.Rd ├── protect_unescaped.Rd ├── provision_isolation.Rd ├── resolve_anchor_links.Rd ├── rmd-fragments │ ├── example-markdown-headers.Rmd │ ├── example-rmarkdown-adding-elements.Rmd │ ├── example-rmarkdown-chunks.Rmd │ ├── format-latex.Rmd │ ├── format-list.Rmd │ ├── format-table.Rmd │ ├── goal.Rmd │ ├── prereqs.Rmd │ ├── use-cases.Rmd │ └── workflow.Rmd ├── show.Rd ├── stylesheet.Rd ├── tinkr-package.Rd ├── to_md.Rd ├── to_xml.Rd └── yarn.Rd ├── tests ├── testthat.R └── testthat │ ├── _snaps │ ├── anchor-links.md │ ├── asis-nodes.md │ ├── attr-nodes.md │ ├── attr-nodes │ │ ├── yarn.Rmd │ │ └── yarn.md │ ├── class-yarn.md │ ├── class-yarn │ │ ├── example-chunk-not-json.md │ │ ├── example-json.md │ │ ├── example-toml.md │ │ ├── yarn-kilroy.md │ │ ├── yarn.Rmd │ │ └── yarn.md │ ├── show.md │ ├── to_md.md │ └── to_md │ │ ├── new-code-chunk.Rmd │ │ ├── table.md │ │ ├── to_md-works-for-Rmd.Rmd │ │ └── to_md-works.md │ ├── test-anchor-links.R │ ├── test-asis-nodes.R │ ├── test-attr-nodes.R │ ├── test-class-yarn.R │ ├── test-get_protected.R │ ├── test-show.R │ ├── test-to_md.R │ ├── test-to_xml.R │ ├── test-utils-string.R │ └── test-utils.R ├── tinkr.Rproj └── vignettes ├── .gitignore └── tinkr.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/.github/issue_template.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/check-full.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/.github/workflows/check-full.yaml -------------------------------------------------------------------------------- /.github/workflows/rhub.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/.github/workflows/rhub.yaml -------------------------------------------------------------------------------- /.github/workflows/test-coverage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/.github/workflows/test-coverage.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/.gitignore -------------------------------------------------------------------------------- /CRAN-SUBMISSION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/CRAN-SUBMISSION -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/add_md.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/R/add_md.R -------------------------------------------------------------------------------- /R/asis-nodes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/R/asis-nodes.R -------------------------------------------------------------------------------- /R/attr-nodes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/R/attr-nodes.R -------------------------------------------------------------------------------- /R/class-yarn.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/R/class-yarn.R -------------------------------------------------------------------------------- /R/find_between.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/R/find_between.R -------------------------------------------------------------------------------- /R/get_protected.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/R/get_protected.R -------------------------------------------------------------------------------- /R/md_ns.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/R/md_ns.R -------------------------------------------------------------------------------- /R/resolve-links.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/R/resolve-links.R -------------------------------------------------------------------------------- /R/show.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/R/show.R -------------------------------------------------------------------------------- /R/stylesheet.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/R/stylesheet.R -------------------------------------------------------------------------------- /R/tinkr-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/R/tinkr-package.R -------------------------------------------------------------------------------- /R/to_md.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/R/to_md.R -------------------------------------------------------------------------------- /R/to_xml.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/R/to_xml.R -------------------------------------------------------------------------------- /R/utils-string.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/R/utils-string.R -------------------------------------------------------------------------------- /R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/R/utils.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/_pkgdown.yml -------------------------------------------------------------------------------- /air.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/air.toml -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/codecov.yml -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/cran-comments.md -------------------------------------------------------------------------------- /inst/WORDLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/inst/WORDLIST -------------------------------------------------------------------------------- /inst/extdata/basic-curly.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/inst/extdata/basic-curly.md -------------------------------------------------------------------------------- /inst/extdata/basic-curly2.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/inst/extdata/basic-curly2.Rmd -------------------------------------------------------------------------------- /inst/extdata/basic-math.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/inst/extdata/basic-math.md -------------------------------------------------------------------------------- /inst/extdata/bigsample.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/inst/extdata/bigsample.md -------------------------------------------------------------------------------- /inst/extdata/bigsample_after_loop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/inst/extdata/bigsample_after_loop.md -------------------------------------------------------------------------------- /inst/extdata/example-chunk-not-json.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/inst/extdata/example-chunk-not-json.md -------------------------------------------------------------------------------- /inst/extdata/example-json.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/inst/extdata/example-json.md -------------------------------------------------------------------------------- /inst/extdata/example-toml.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/inst/extdata/example-toml.md -------------------------------------------------------------------------------- /inst/extdata/example1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/inst/extdata/example1.md -------------------------------------------------------------------------------- /inst/extdata/example2.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/inst/extdata/example2.Rmd -------------------------------------------------------------------------------- /inst/extdata/fenced-divs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/inst/extdata/fenced-divs.md -------------------------------------------------------------------------------- /inst/extdata/link-test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/inst/extdata/link-test.md -------------------------------------------------------------------------------- /inst/extdata/math-example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/inst/extdata/math-example.md -------------------------------------------------------------------------------- /inst/extdata/show-example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/inst/extdata/show-example.md -------------------------------------------------------------------------------- /inst/extdata/table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/inst/extdata/table.md -------------------------------------------------------------------------------- /inst/extdata/xml_table.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/inst/extdata/xml_table.xml -------------------------------------------------------------------------------- /inst/presub.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/inst/presub.md -------------------------------------------------------------------------------- /inst/scripts/rmd_doc.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/inst/scripts/rmd_doc.Rmd -------------------------------------------------------------------------------- /inst/scripts/rmd_doc.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/inst/scripts/rmd_doc.docx -------------------------------------------------------------------------------- /inst/scripts/rmd_doc_loop.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/inst/scripts/rmd_doc_loop.Rmd -------------------------------------------------------------------------------- /inst/scripts/rmd_doc_pandoc.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/inst/scripts/rmd_doc_pandoc.Rmd -------------------------------------------------------------------------------- /inst/scripts/roweb2_headers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/inst/scripts/roweb2_headers.R -------------------------------------------------------------------------------- /inst/scripts/samples.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/inst/scripts/samples.R -------------------------------------------------------------------------------- /inst/scripts/test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/inst/scripts/test.md -------------------------------------------------------------------------------- /inst/scripts/unknit.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/inst/scripts/unknit.R -------------------------------------------------------------------------------- /inst/scripts/xml_table.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/inst/scripts/xml_table.R -------------------------------------------------------------------------------- /inst/stylesheets/xml2md.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/inst/stylesheets/xml2md.xsl -------------------------------------------------------------------------------- /inst/stylesheets/xml2md_gfm.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/inst/stylesheets/xml2md_gfm.xsl -------------------------------------------------------------------------------- /man/add_md.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/man/add_md.Rd -------------------------------------------------------------------------------- /man/add_nodes_to_body.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/man/add_nodes_to_body.Rd -------------------------------------------------------------------------------- /man/figures/lifecycle-deprecated.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/man/figures/lifecycle-deprecated.svg -------------------------------------------------------------------------------- /man/figures/lifecycle-experimental.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/man/figures/lifecycle-experimental.svg -------------------------------------------------------------------------------- /man/figures/lifecycle-stable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/man/figures/lifecycle-stable.svg -------------------------------------------------------------------------------- /man/figures/lifecycle-superseded.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/man/figures/lifecycle-superseded.svg -------------------------------------------------------------------------------- /man/find_between.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/man/find_between.Rd -------------------------------------------------------------------------------- /man/get_protected.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/man/get_protected.Rd -------------------------------------------------------------------------------- /man/insert_md.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/man/insert_md.Rd -------------------------------------------------------------------------------- /man/isolate_nodes.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/man/isolate_nodes.Rd -------------------------------------------------------------------------------- /man/md_ns.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/man/md_ns.Rd -------------------------------------------------------------------------------- /man/md_to_xml.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/man/md_to_xml.Rd -------------------------------------------------------------------------------- /man/protect_curly.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/man/protect_curly.Rd -------------------------------------------------------------------------------- /man/protect_fences.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/man/protect_fences.Rd -------------------------------------------------------------------------------- /man/protect_inline_math.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/man/protect_inline_math.Rd -------------------------------------------------------------------------------- /man/protect_math.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/man/protect_math.Rd -------------------------------------------------------------------------------- /man/protect_unescaped.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/man/protect_unescaped.Rd -------------------------------------------------------------------------------- /man/provision_isolation.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/man/provision_isolation.Rd -------------------------------------------------------------------------------- /man/resolve_anchor_links.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/man/resolve_anchor_links.Rd -------------------------------------------------------------------------------- /man/rmd-fragments/example-markdown-headers.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/man/rmd-fragments/example-markdown-headers.Rmd -------------------------------------------------------------------------------- /man/rmd-fragments/example-rmarkdown-adding-elements.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/man/rmd-fragments/example-rmarkdown-adding-elements.Rmd -------------------------------------------------------------------------------- /man/rmd-fragments/example-rmarkdown-chunks.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/man/rmd-fragments/example-rmarkdown-chunks.Rmd -------------------------------------------------------------------------------- /man/rmd-fragments/format-latex.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/man/rmd-fragments/format-latex.Rmd -------------------------------------------------------------------------------- /man/rmd-fragments/format-list.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/man/rmd-fragments/format-list.Rmd -------------------------------------------------------------------------------- /man/rmd-fragments/format-table.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/man/rmd-fragments/format-table.Rmd -------------------------------------------------------------------------------- /man/rmd-fragments/goal.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/man/rmd-fragments/goal.Rmd -------------------------------------------------------------------------------- /man/rmd-fragments/prereqs.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/man/rmd-fragments/prereqs.Rmd -------------------------------------------------------------------------------- /man/rmd-fragments/use-cases.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/man/rmd-fragments/use-cases.Rmd -------------------------------------------------------------------------------- /man/rmd-fragments/workflow.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/man/rmd-fragments/workflow.Rmd -------------------------------------------------------------------------------- /man/show.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/man/show.Rd -------------------------------------------------------------------------------- /man/stylesheet.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/man/stylesheet.Rd -------------------------------------------------------------------------------- /man/tinkr-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/man/tinkr-package.Rd -------------------------------------------------------------------------------- /man/to_md.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/man/to_md.Rd -------------------------------------------------------------------------------- /man/to_xml.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/man/to_xml.Rd -------------------------------------------------------------------------------- /man/yarn.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/man/yarn.Rd -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/_snaps/anchor-links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/tests/testthat/_snaps/anchor-links.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/asis-nodes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/tests/testthat/_snaps/asis-nodes.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/attr-nodes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/tests/testthat/_snaps/attr-nodes.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/attr-nodes/yarn.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/tests/testthat/_snaps/attr-nodes/yarn.Rmd -------------------------------------------------------------------------------- /tests/testthat/_snaps/attr-nodes/yarn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/tests/testthat/_snaps/attr-nodes/yarn.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/class-yarn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/tests/testthat/_snaps/class-yarn.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/class-yarn/example-chunk-not-json.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/tests/testthat/_snaps/class-yarn/example-chunk-not-json.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/class-yarn/example-json.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/tests/testthat/_snaps/class-yarn/example-json.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/class-yarn/example-toml.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/tests/testthat/_snaps/class-yarn/example-toml.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/class-yarn/yarn-kilroy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/tests/testthat/_snaps/class-yarn/yarn-kilroy.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/class-yarn/yarn.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/tests/testthat/_snaps/class-yarn/yarn.Rmd -------------------------------------------------------------------------------- /tests/testthat/_snaps/class-yarn/yarn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/tests/testthat/_snaps/class-yarn/yarn.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/show.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/tests/testthat/_snaps/show.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/to_md.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/tests/testthat/_snaps/to_md.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/to_md/new-code-chunk.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/tests/testthat/_snaps/to_md/new-code-chunk.Rmd -------------------------------------------------------------------------------- /tests/testthat/_snaps/to_md/table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/tests/testthat/_snaps/to_md/table.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/to_md/to_md-works-for-Rmd.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/tests/testthat/_snaps/to_md/to_md-works-for-Rmd.Rmd -------------------------------------------------------------------------------- /tests/testthat/_snaps/to_md/to_md-works.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/tests/testthat/_snaps/to_md/to_md-works.md -------------------------------------------------------------------------------- /tests/testthat/test-anchor-links.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/tests/testthat/test-anchor-links.R -------------------------------------------------------------------------------- /tests/testthat/test-asis-nodes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/tests/testthat/test-asis-nodes.R -------------------------------------------------------------------------------- /tests/testthat/test-attr-nodes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/tests/testthat/test-attr-nodes.R -------------------------------------------------------------------------------- /tests/testthat/test-class-yarn.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/tests/testthat/test-class-yarn.R -------------------------------------------------------------------------------- /tests/testthat/test-get_protected.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/tests/testthat/test-get_protected.R -------------------------------------------------------------------------------- /tests/testthat/test-show.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/tests/testthat/test-show.R -------------------------------------------------------------------------------- /tests/testthat/test-to_md.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/tests/testthat/test-to_md.R -------------------------------------------------------------------------------- /tests/testthat/test-to_xml.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/tests/testthat/test-to_xml.R -------------------------------------------------------------------------------- /tests/testthat/test-utils-string.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/tests/testthat/test-utils-string.R -------------------------------------------------------------------------------- /tests/testthat/test-utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/tests/testthat/test-utils.R -------------------------------------------------------------------------------- /tinkr.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/tinkr.Rproj -------------------------------------------------------------------------------- /vignettes/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.R 3 | -------------------------------------------------------------------------------- /vignettes/tinkr.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/tinkr/HEAD/vignettes/tinkr.Rmd --------------------------------------------------------------------------------