├── .Rbuildignore ├── .github ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── FUNDING.yml ├── ISSUE_TEMPLATE.md ├── config.yml └── workflows │ ├── R-CMD-check.yaml │ └── test-coverage.yaml ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R ├── addins.R ├── criticmarkup.R ├── dedoc.R ├── diff.R ├── docx-utils.R ├── extract-outputs.R ├── get_style_dist.R ├── officer-embed.R ├── officer-modify_style.R ├── officer-sections.R ├── pandocoml.R ├── preprocessor.R ├── redoc-package.R ├── redoc.R ├── stri-utils.R ├── utils.R ├── wrap.R └── wrappers.R ├── README.Rmd ├── README.md ├── inst ├── WORDLIST ├── examples │ ├── example-edited.docx │ ├── example.Rmd │ └── example.docx ├── lua-filters │ ├── criticmarkup-commentsonly.lua │ ├── criticmarkup.lua │ ├── extract-outputs.lua │ ├── inline-headers-tomd.lua │ ├── inline-headers-toword.lua │ ├── protect-empty.lua │ └── revchunks.lua ├── rmarkdown │ └── templates │ │ └── redoc │ │ ├── skeleton │ │ ├── .gitignore │ │ ├── skeleton.Rmd │ │ └── skeleton.docx │ │ └── template.yaml └── rstudio │ └── addins.dcf ├── man ├── addins.Rd ├── dedoc.Rd ├── figures │ └── readme-diff.png ├── is_redoc.Rd ├── make_preknitter.Rd ├── make_wrapper.Rd ├── pandoc_ast.Rd ├── redoc-package.Rd ├── redoc.Rd ├── redoc_diff.Rd ├── redoc_examples.Rd └── redoc_extract_rmd.Rd ├── pkgdown ├── _pkgdown.yml └── extra.css ├── redoc.Rproj ├── tests ├── spelling.R ├── testthat.R └── testthat │ ├── .gitignore │ └── test-roundtrip.R └── vignettes ├── .gitignore ├── figures └── readme-diff.png ├── mixed-workflows-with-redoc.Rmd └── redoc-package-design.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoc-dev/redoc/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoc-dev/redoc/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoc-dev/redoc/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoc-dev/redoc/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoc-dev/redoc/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoc-dev/redoc/HEAD/.github/config.yml -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoc-dev/redoc/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/test-coverage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoc-dev/redoc/HEAD/.github/workflows/test-coverage.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoc-dev/redoc/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoc-dev/redoc/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2025 2 | COPYRIGHT HOLDER: redoc authors 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoc-dev/redoc/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoc-dev/redoc/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoc-dev/redoc/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/addins.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoc-dev/redoc/HEAD/R/addins.R -------------------------------------------------------------------------------- /R/criticmarkup.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoc-dev/redoc/HEAD/R/criticmarkup.R -------------------------------------------------------------------------------- /R/dedoc.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoc-dev/redoc/HEAD/R/dedoc.R -------------------------------------------------------------------------------- /R/diff.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoc-dev/redoc/HEAD/R/diff.R -------------------------------------------------------------------------------- /R/docx-utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoc-dev/redoc/HEAD/R/docx-utils.R -------------------------------------------------------------------------------- /R/extract-outputs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoc-dev/redoc/HEAD/R/extract-outputs.R -------------------------------------------------------------------------------- /R/get_style_dist.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoc-dev/redoc/HEAD/R/get_style_dist.R -------------------------------------------------------------------------------- /R/officer-embed.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoc-dev/redoc/HEAD/R/officer-embed.R -------------------------------------------------------------------------------- /R/officer-modify_style.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoc-dev/redoc/HEAD/R/officer-modify_style.R -------------------------------------------------------------------------------- /R/officer-sections.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoc-dev/redoc/HEAD/R/officer-sections.R -------------------------------------------------------------------------------- /R/pandocoml.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoc-dev/redoc/HEAD/R/pandocoml.R -------------------------------------------------------------------------------- /R/preprocessor.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoc-dev/redoc/HEAD/R/preprocessor.R -------------------------------------------------------------------------------- /R/redoc-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoc-dev/redoc/HEAD/R/redoc-package.R -------------------------------------------------------------------------------- /R/redoc.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoc-dev/redoc/HEAD/R/redoc.R -------------------------------------------------------------------------------- /R/stri-utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoc-dev/redoc/HEAD/R/stri-utils.R -------------------------------------------------------------------------------- /R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoc-dev/redoc/HEAD/R/utils.R -------------------------------------------------------------------------------- /R/wrap.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoc-dev/redoc/HEAD/R/wrap.R -------------------------------------------------------------------------------- /R/wrappers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoc-dev/redoc/HEAD/R/wrappers.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoc-dev/redoc/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoc-dev/redoc/HEAD/README.md -------------------------------------------------------------------------------- /inst/WORDLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoc-dev/redoc/HEAD/inst/WORDLIST -------------------------------------------------------------------------------- /inst/examples/example-edited.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoc-dev/redoc/HEAD/inst/examples/example-edited.docx -------------------------------------------------------------------------------- /inst/examples/example.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoc-dev/redoc/HEAD/inst/examples/example.Rmd -------------------------------------------------------------------------------- /inst/examples/example.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoc-dev/redoc/HEAD/inst/examples/example.docx -------------------------------------------------------------------------------- /inst/lua-filters/criticmarkup-commentsonly.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoc-dev/redoc/HEAD/inst/lua-filters/criticmarkup-commentsonly.lua -------------------------------------------------------------------------------- /inst/lua-filters/criticmarkup.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoc-dev/redoc/HEAD/inst/lua-filters/criticmarkup.lua -------------------------------------------------------------------------------- /inst/lua-filters/extract-outputs.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoc-dev/redoc/HEAD/inst/lua-filters/extract-outputs.lua -------------------------------------------------------------------------------- /inst/lua-filters/inline-headers-tomd.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoc-dev/redoc/HEAD/inst/lua-filters/inline-headers-tomd.lua -------------------------------------------------------------------------------- /inst/lua-filters/inline-headers-toword.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoc-dev/redoc/HEAD/inst/lua-filters/inline-headers-toword.lua -------------------------------------------------------------------------------- /inst/lua-filters/protect-empty.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoc-dev/redoc/HEAD/inst/lua-filters/protect-empty.lua -------------------------------------------------------------------------------- /inst/lua-filters/revchunks.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoc-dev/redoc/HEAD/inst/lua-filters/revchunks.lua -------------------------------------------------------------------------------- /inst/rmarkdown/templates/redoc/skeleton/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoc-dev/redoc/HEAD/inst/rmarkdown/templates/redoc/skeleton/.gitignore -------------------------------------------------------------------------------- /inst/rmarkdown/templates/redoc/skeleton/skeleton.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoc-dev/redoc/HEAD/inst/rmarkdown/templates/redoc/skeleton/skeleton.Rmd -------------------------------------------------------------------------------- /inst/rmarkdown/templates/redoc/skeleton/skeleton.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoc-dev/redoc/HEAD/inst/rmarkdown/templates/redoc/skeleton/skeleton.docx -------------------------------------------------------------------------------- /inst/rmarkdown/templates/redoc/template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoc-dev/redoc/HEAD/inst/rmarkdown/templates/redoc/template.yaml -------------------------------------------------------------------------------- /inst/rstudio/addins.dcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoc-dev/redoc/HEAD/inst/rstudio/addins.dcf -------------------------------------------------------------------------------- /man/addins.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoc-dev/redoc/HEAD/man/addins.Rd -------------------------------------------------------------------------------- /man/dedoc.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoc-dev/redoc/HEAD/man/dedoc.Rd -------------------------------------------------------------------------------- /man/figures/readme-diff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoc-dev/redoc/HEAD/man/figures/readme-diff.png -------------------------------------------------------------------------------- /man/is_redoc.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoc-dev/redoc/HEAD/man/is_redoc.Rd -------------------------------------------------------------------------------- /man/make_preknitter.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoc-dev/redoc/HEAD/man/make_preknitter.Rd -------------------------------------------------------------------------------- /man/make_wrapper.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoc-dev/redoc/HEAD/man/make_wrapper.Rd -------------------------------------------------------------------------------- /man/pandoc_ast.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoc-dev/redoc/HEAD/man/pandoc_ast.Rd -------------------------------------------------------------------------------- /man/redoc-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoc-dev/redoc/HEAD/man/redoc-package.Rd -------------------------------------------------------------------------------- /man/redoc.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoc-dev/redoc/HEAD/man/redoc.Rd -------------------------------------------------------------------------------- /man/redoc_diff.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoc-dev/redoc/HEAD/man/redoc_diff.Rd -------------------------------------------------------------------------------- /man/redoc_examples.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoc-dev/redoc/HEAD/man/redoc_examples.Rd -------------------------------------------------------------------------------- /man/redoc_extract_rmd.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoc-dev/redoc/HEAD/man/redoc_extract_rmd.Rd -------------------------------------------------------------------------------- /pkgdown/_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoc-dev/redoc/HEAD/pkgdown/_pkgdown.yml -------------------------------------------------------------------------------- /pkgdown/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoc-dev/redoc/HEAD/pkgdown/extra.css -------------------------------------------------------------------------------- /redoc.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoc-dev/redoc/HEAD/redoc.Rproj -------------------------------------------------------------------------------- /tests/spelling.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoc-dev/redoc/HEAD/tests/spelling.R -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoc-dev/redoc/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/.gitignore: -------------------------------------------------------------------------------- 1 | test_artifacts 2 | -------------------------------------------------------------------------------- /tests/testthat/test-roundtrip.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoc-dev/redoc/HEAD/tests/testthat/test-roundtrip.R -------------------------------------------------------------------------------- /vignettes/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.R 3 | -------------------------------------------------------------------------------- /vignettes/figures/readme-diff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoc-dev/redoc/HEAD/vignettes/figures/readme-diff.png -------------------------------------------------------------------------------- /vignettes/mixed-workflows-with-redoc.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoc-dev/redoc/HEAD/vignettes/mixed-workflows-with-redoc.Rmd -------------------------------------------------------------------------------- /vignettes/redoc-package-design.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redoc-dev/redoc/HEAD/vignettes/redoc-package-design.Rmd --------------------------------------------------------------------------------