├── .Rbuildignore ├── .gitattributes ├── .github ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── actions │ └── install-ghostscript │ │ └── action.yml └── workflows │ ├── R-CMD-check.yaml │ ├── check-pandoc-daily.yaml │ └── update-examples.yaml ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R ├── card.R ├── chrome.R ├── paged.R ├── pagedown-package.R ├── poster.R ├── resume.R └── utils.R ├── README.md ├── codecov.yml ├── inst ├── examples │ ├── index.Rmd │ ├── pagedown_hex.svg │ └── zh-CN.Rmd ├── resources │ ├── csl │ │ └── journal-of-statistical-software.csl │ ├── css │ │ ├── crc-page.css │ │ ├── crc.css │ │ ├── default-fonts.css │ │ ├── default-page.css │ │ ├── default.css │ │ ├── jss-fonts.css │ │ ├── jss-page.css │ │ ├── jss.css │ │ ├── letter.css │ │ ├── poster-jacobs.css │ │ ├── poster-relaxed.css │ │ ├── resume.css │ │ └── thesis.css │ ├── html │ │ ├── card.html │ │ ├── jss_paged.html │ │ ├── paged.html │ │ ├── poster-jacobs.html │ │ ├── poster-relaxed.html │ │ ├── resume.html │ │ └── thesis.html │ ├── js │ │ ├── chrome_print.js │ │ ├── config.js │ │ ├── hooks.js │ │ ├── paged-latest.js │ │ └── paged.js │ └── lua │ │ ├── footnotes.lua │ │ ├── jss.lua │ │ ├── loft.lua │ │ └── uri-to-fn.lua └── rmarkdown │ └── templates │ ├── business-card │ ├── skeleton │ │ └── skeleton.Rmd │ └── template.yaml │ ├── html-letter │ ├── skeleton │ │ └── skeleton.Rmd │ └── template.yaml │ ├── html-paged │ ├── skeleton │ │ └── skeleton.Rmd │ └── template.yaml │ ├── html-resume │ ├── skeleton │ │ └── skeleton.Rmd │ └── template.yaml │ ├── jss-paged │ ├── skeleton │ │ └── skeleton.Rmd │ └── template.yaml │ ├── poster-jacobs │ ├── skeleton │ │ └── skeleton.Rmd │ └── template.yaml │ ├── poster-relaxed │ ├── skeleton │ │ └── skeleton.Rmd │ └── template.yaml │ └── thesis-paged │ ├── skeleton │ └── skeleton.Rmd │ └── template.yaml ├── man ├── book_crc.Rd ├── business_card.Rd ├── chrome_print.Rd ├── figures │ └── logo.png ├── find_chrome.Rd ├── html_letter.Rd ├── html_paged.Rd ├── html_resume.Rd ├── jss_paged.Rd ├── pagedown-package.Rd ├── poster_relaxed.Rd └── thesis_paged.Rd ├── pagedown.Rproj ├── tests ├── test-ci.R ├── test-ci │ ├── test-chrome.R │ ├── test-chrome.Rmd │ ├── test-features.R │ ├── test-formats.R │ ├── test-outline.Rmd │ ├── test-page-breaks.Rmd │ └── test-revealjs.Rmd ├── test-cran.R └── test-cran │ └── test-utils.R └── tools ├── update.R └── website.R /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/pagedown/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | inst/resources/js/paged.js linguist-vendored 2 | -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/pagedown/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/pagedown/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/actions/install-ghostscript/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/pagedown/HEAD/.github/actions/install-ghostscript/action.yml -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/pagedown/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/check-pandoc-daily.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/pagedown/HEAD/.github/workflows/check-pandoc-daily.yaml -------------------------------------------------------------------------------- /.github/workflows/update-examples.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/pagedown/HEAD/.github/workflows/update-examples.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/pagedown/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/pagedown/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2023 2 | COPYRIGHT HOLDER: pagedown authors 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/pagedown/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/pagedown/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/pagedown/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/card.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/pagedown/HEAD/R/card.R -------------------------------------------------------------------------------- /R/chrome.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/pagedown/HEAD/R/chrome.R -------------------------------------------------------------------------------- /R/paged.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/pagedown/HEAD/R/paged.R -------------------------------------------------------------------------------- /R/pagedown-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/pagedown/HEAD/R/pagedown-package.R -------------------------------------------------------------------------------- /R/poster.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/pagedown/HEAD/R/poster.R -------------------------------------------------------------------------------- /R/resume.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/pagedown/HEAD/R/resume.R -------------------------------------------------------------------------------- /R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/pagedown/HEAD/R/utils.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/pagedown/HEAD/README.md -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/pagedown/HEAD/codecov.yml -------------------------------------------------------------------------------- /inst/examples/index.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/pagedown/HEAD/inst/examples/index.Rmd -------------------------------------------------------------------------------- /inst/examples/pagedown_hex.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/pagedown/HEAD/inst/examples/pagedown_hex.svg -------------------------------------------------------------------------------- /inst/examples/zh-CN.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/pagedown/HEAD/inst/examples/zh-CN.Rmd -------------------------------------------------------------------------------- /inst/resources/csl/journal-of-statistical-software.csl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/pagedown/HEAD/inst/resources/csl/journal-of-statistical-software.csl -------------------------------------------------------------------------------- /inst/resources/css/crc-page.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/pagedown/HEAD/inst/resources/css/crc-page.css -------------------------------------------------------------------------------- /inst/resources/css/crc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/pagedown/HEAD/inst/resources/css/crc.css -------------------------------------------------------------------------------- /inst/resources/css/default-fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/pagedown/HEAD/inst/resources/css/default-fonts.css -------------------------------------------------------------------------------- /inst/resources/css/default-page.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/pagedown/HEAD/inst/resources/css/default-page.css -------------------------------------------------------------------------------- /inst/resources/css/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/pagedown/HEAD/inst/resources/css/default.css -------------------------------------------------------------------------------- /inst/resources/css/jss-fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/pagedown/HEAD/inst/resources/css/jss-fonts.css -------------------------------------------------------------------------------- /inst/resources/css/jss-page.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/pagedown/HEAD/inst/resources/css/jss-page.css -------------------------------------------------------------------------------- /inst/resources/css/jss.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/pagedown/HEAD/inst/resources/css/jss.css -------------------------------------------------------------------------------- /inst/resources/css/letter.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/pagedown/HEAD/inst/resources/css/letter.css -------------------------------------------------------------------------------- /inst/resources/css/poster-jacobs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/pagedown/HEAD/inst/resources/css/poster-jacobs.css -------------------------------------------------------------------------------- /inst/resources/css/poster-relaxed.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/pagedown/HEAD/inst/resources/css/poster-relaxed.css -------------------------------------------------------------------------------- /inst/resources/css/resume.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/pagedown/HEAD/inst/resources/css/resume.css -------------------------------------------------------------------------------- /inst/resources/css/thesis.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/pagedown/HEAD/inst/resources/css/thesis.css -------------------------------------------------------------------------------- /inst/resources/html/card.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/pagedown/HEAD/inst/resources/html/card.html -------------------------------------------------------------------------------- /inst/resources/html/jss_paged.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/pagedown/HEAD/inst/resources/html/jss_paged.html -------------------------------------------------------------------------------- /inst/resources/html/paged.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/pagedown/HEAD/inst/resources/html/paged.html -------------------------------------------------------------------------------- /inst/resources/html/poster-jacobs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/pagedown/HEAD/inst/resources/html/poster-jacobs.html -------------------------------------------------------------------------------- /inst/resources/html/poster-relaxed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/pagedown/HEAD/inst/resources/html/poster-relaxed.html -------------------------------------------------------------------------------- /inst/resources/html/resume.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/pagedown/HEAD/inst/resources/html/resume.html -------------------------------------------------------------------------------- /inst/resources/html/thesis.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/pagedown/HEAD/inst/resources/html/thesis.html -------------------------------------------------------------------------------- /inst/resources/js/chrome_print.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/pagedown/HEAD/inst/resources/js/chrome_print.js -------------------------------------------------------------------------------- /inst/resources/js/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/pagedown/HEAD/inst/resources/js/config.js -------------------------------------------------------------------------------- /inst/resources/js/hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/pagedown/HEAD/inst/resources/js/hooks.js -------------------------------------------------------------------------------- /inst/resources/js/paged-latest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/pagedown/HEAD/inst/resources/js/paged-latest.js -------------------------------------------------------------------------------- /inst/resources/js/paged.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/pagedown/HEAD/inst/resources/js/paged.js -------------------------------------------------------------------------------- /inst/resources/lua/footnotes.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/pagedown/HEAD/inst/resources/lua/footnotes.lua -------------------------------------------------------------------------------- /inst/resources/lua/jss.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/pagedown/HEAD/inst/resources/lua/jss.lua -------------------------------------------------------------------------------- /inst/resources/lua/loft.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/pagedown/HEAD/inst/resources/lua/loft.lua -------------------------------------------------------------------------------- /inst/resources/lua/uri-to-fn.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/pagedown/HEAD/inst/resources/lua/uri-to-fn.lua -------------------------------------------------------------------------------- /inst/rmarkdown/templates/business-card/skeleton/skeleton.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/pagedown/HEAD/inst/rmarkdown/templates/business-card/skeleton/skeleton.Rmd -------------------------------------------------------------------------------- /inst/rmarkdown/templates/business-card/template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/pagedown/HEAD/inst/rmarkdown/templates/business-card/template.yaml -------------------------------------------------------------------------------- /inst/rmarkdown/templates/html-letter/skeleton/skeleton.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/pagedown/HEAD/inst/rmarkdown/templates/html-letter/skeleton/skeleton.Rmd -------------------------------------------------------------------------------- /inst/rmarkdown/templates/html-letter/template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/pagedown/HEAD/inst/rmarkdown/templates/html-letter/template.yaml -------------------------------------------------------------------------------- /inst/rmarkdown/templates/html-paged/skeleton/skeleton.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/pagedown/HEAD/inst/rmarkdown/templates/html-paged/skeleton/skeleton.Rmd -------------------------------------------------------------------------------- /inst/rmarkdown/templates/html-paged/template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/pagedown/HEAD/inst/rmarkdown/templates/html-paged/template.yaml -------------------------------------------------------------------------------- /inst/rmarkdown/templates/html-resume/skeleton/skeleton.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/pagedown/HEAD/inst/rmarkdown/templates/html-resume/skeleton/skeleton.Rmd -------------------------------------------------------------------------------- /inst/rmarkdown/templates/html-resume/template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/pagedown/HEAD/inst/rmarkdown/templates/html-resume/template.yaml -------------------------------------------------------------------------------- /inst/rmarkdown/templates/jss-paged/skeleton/skeleton.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/pagedown/HEAD/inst/rmarkdown/templates/jss-paged/skeleton/skeleton.Rmd -------------------------------------------------------------------------------- /inst/rmarkdown/templates/jss-paged/template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/pagedown/HEAD/inst/rmarkdown/templates/jss-paged/template.yaml -------------------------------------------------------------------------------- /inst/rmarkdown/templates/poster-jacobs/skeleton/skeleton.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/pagedown/HEAD/inst/rmarkdown/templates/poster-jacobs/skeleton/skeleton.Rmd -------------------------------------------------------------------------------- /inst/rmarkdown/templates/poster-jacobs/template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/pagedown/HEAD/inst/rmarkdown/templates/poster-jacobs/template.yaml -------------------------------------------------------------------------------- /inst/rmarkdown/templates/poster-relaxed/skeleton/skeleton.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/pagedown/HEAD/inst/rmarkdown/templates/poster-relaxed/skeleton/skeleton.Rmd -------------------------------------------------------------------------------- /inst/rmarkdown/templates/poster-relaxed/template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/pagedown/HEAD/inst/rmarkdown/templates/poster-relaxed/template.yaml -------------------------------------------------------------------------------- /inst/rmarkdown/templates/thesis-paged/skeleton/skeleton.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/pagedown/HEAD/inst/rmarkdown/templates/thesis-paged/skeleton/skeleton.Rmd -------------------------------------------------------------------------------- /inst/rmarkdown/templates/thesis-paged/template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/pagedown/HEAD/inst/rmarkdown/templates/thesis-paged/template.yaml -------------------------------------------------------------------------------- /man/book_crc.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/pagedown/HEAD/man/book_crc.Rd -------------------------------------------------------------------------------- /man/business_card.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/pagedown/HEAD/man/business_card.Rd -------------------------------------------------------------------------------- /man/chrome_print.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/pagedown/HEAD/man/chrome_print.Rd -------------------------------------------------------------------------------- /man/figures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/pagedown/HEAD/man/figures/logo.png -------------------------------------------------------------------------------- /man/find_chrome.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/pagedown/HEAD/man/find_chrome.Rd -------------------------------------------------------------------------------- /man/html_letter.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/pagedown/HEAD/man/html_letter.Rd -------------------------------------------------------------------------------- /man/html_paged.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/pagedown/HEAD/man/html_paged.Rd -------------------------------------------------------------------------------- /man/html_resume.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/pagedown/HEAD/man/html_resume.Rd -------------------------------------------------------------------------------- /man/jss_paged.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/pagedown/HEAD/man/jss_paged.Rd -------------------------------------------------------------------------------- /man/pagedown-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/pagedown/HEAD/man/pagedown-package.Rd -------------------------------------------------------------------------------- /man/poster_relaxed.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/pagedown/HEAD/man/poster_relaxed.Rd -------------------------------------------------------------------------------- /man/thesis_paged.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/pagedown/HEAD/man/thesis_paged.Rd -------------------------------------------------------------------------------- /pagedown.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/pagedown/HEAD/pagedown.Rproj -------------------------------------------------------------------------------- /tests/test-ci.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/pagedown/HEAD/tests/test-ci.R -------------------------------------------------------------------------------- /tests/test-ci/test-chrome.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/pagedown/HEAD/tests/test-ci/test-chrome.R -------------------------------------------------------------------------------- /tests/test-ci/test-chrome.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/pagedown/HEAD/tests/test-ci/test-chrome.Rmd -------------------------------------------------------------------------------- /tests/test-ci/test-features.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/pagedown/HEAD/tests/test-ci/test-features.R -------------------------------------------------------------------------------- /tests/test-ci/test-formats.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/pagedown/HEAD/tests/test-ci/test-formats.R -------------------------------------------------------------------------------- /tests/test-ci/test-outline.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/pagedown/HEAD/tests/test-ci/test-outline.Rmd -------------------------------------------------------------------------------- /tests/test-ci/test-page-breaks.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/pagedown/HEAD/tests/test-ci/test-page-breaks.Rmd -------------------------------------------------------------------------------- /tests/test-ci/test-revealjs.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/pagedown/HEAD/tests/test-ci/test-revealjs.Rmd -------------------------------------------------------------------------------- /tests/test-cran.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/pagedown/HEAD/tests/test-cran.R -------------------------------------------------------------------------------- /tests/test-cran/test-utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/pagedown/HEAD/tests/test-cran/test-utils.R -------------------------------------------------------------------------------- /tools/update.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/pagedown/HEAD/tools/update.R -------------------------------------------------------------------------------- /tools/website.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/pagedown/HEAD/tools/website.R --------------------------------------------------------------------------------