├── .Rbuildignore ├── .gitignore ├── .travis.yml ├── DESCRIPTION ├── LICENSE.md ├── NAMESPACE ├── R ├── convert_html2pdf_format.R ├── hpdf_book.R ├── hpdf_document.R ├── hpdf_document2.R ├── hpdf_document_base.R ├── make_pdf.R ├── utils.R ├── wpdf_document.R └── wpdf_document_base.R ├── README.md ├── codecov.yml ├── inst ├── docker │ └── Dockerfile ├── luafilters │ └── footnotes.lua ├── rmarkdown │ └── templates │ │ └── hpdf_document │ │ ├── skeleton │ │ ├── .gitignore │ │ └── skeleton.Rmd │ │ └── template.yaml └── templates │ └── default │ ├── footnotes.css │ ├── h4default.html │ ├── h5default.html │ └── toc.css ├── man ├── convert_html2pdf_format.Rd ├── extd_html_document_base.Rd ├── hpdf_book.Rd ├── hpdf_document.Rd ├── hpdf_document2.Rd ├── hpdf_document_base.Rd ├── html4_document.Rd ├── html5_document.Rd ├── make_pdf.Rd ├── wpdf_document.Rd └── wpdf_document_base.Rd ├── tests ├── testthat.R └── testthat │ ├── .gitignore │ ├── css_file.css │ ├── document.Rmd │ ├── footnotes.Rmd │ ├── test-extd_html_document_base.R │ ├── test-hpdf_book.R │ ├── test-hpdf_document.R │ ├── test-hpdf_document_base.R │ ├── test-html5_document.R │ ├── test-make_pdf.R │ ├── test-pdf-engines-as-postprocessors.R │ ├── test-utils.R │ ├── test-wpdf_document.R │ ├── test-wpdf_document_base.R │ └── test_folder │ ├── html_file.html │ └── html_file_files │ └── figure-html │ └── pressure-1.png └── weasydoc.Rproj /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLesur/weasydoc/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLesur/weasydoc/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLesur/weasydoc/HEAD/.travis.yml -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLesur/weasydoc/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLesur/weasydoc/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLesur/weasydoc/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/convert_html2pdf_format.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLesur/weasydoc/HEAD/R/convert_html2pdf_format.R -------------------------------------------------------------------------------- /R/hpdf_book.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLesur/weasydoc/HEAD/R/hpdf_book.R -------------------------------------------------------------------------------- /R/hpdf_document.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLesur/weasydoc/HEAD/R/hpdf_document.R -------------------------------------------------------------------------------- /R/hpdf_document2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLesur/weasydoc/HEAD/R/hpdf_document2.R -------------------------------------------------------------------------------- /R/hpdf_document_base.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLesur/weasydoc/HEAD/R/hpdf_document_base.R -------------------------------------------------------------------------------- /R/make_pdf.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLesur/weasydoc/HEAD/R/make_pdf.R -------------------------------------------------------------------------------- /R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLesur/weasydoc/HEAD/R/utils.R -------------------------------------------------------------------------------- /R/wpdf_document.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLesur/weasydoc/HEAD/R/wpdf_document.R -------------------------------------------------------------------------------- /R/wpdf_document_base.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLesur/weasydoc/HEAD/R/wpdf_document_base.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLesur/weasydoc/HEAD/README.md -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLesur/weasydoc/HEAD/codecov.yml -------------------------------------------------------------------------------- /inst/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLesur/weasydoc/HEAD/inst/docker/Dockerfile -------------------------------------------------------------------------------- /inst/luafilters/footnotes.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLesur/weasydoc/HEAD/inst/luafilters/footnotes.lua -------------------------------------------------------------------------------- /inst/rmarkdown/templates/hpdf_document/skeleton/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLesur/weasydoc/HEAD/inst/rmarkdown/templates/hpdf_document/skeleton/.gitignore -------------------------------------------------------------------------------- /inst/rmarkdown/templates/hpdf_document/skeleton/skeleton.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLesur/weasydoc/HEAD/inst/rmarkdown/templates/hpdf_document/skeleton/skeleton.Rmd -------------------------------------------------------------------------------- /inst/rmarkdown/templates/hpdf_document/template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLesur/weasydoc/HEAD/inst/rmarkdown/templates/hpdf_document/template.yaml -------------------------------------------------------------------------------- /inst/templates/default/footnotes.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLesur/weasydoc/HEAD/inst/templates/default/footnotes.css -------------------------------------------------------------------------------- /inst/templates/default/h4default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLesur/weasydoc/HEAD/inst/templates/default/h4default.html -------------------------------------------------------------------------------- /inst/templates/default/h5default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLesur/weasydoc/HEAD/inst/templates/default/h5default.html -------------------------------------------------------------------------------- /inst/templates/default/toc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLesur/weasydoc/HEAD/inst/templates/default/toc.css -------------------------------------------------------------------------------- /man/convert_html2pdf_format.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLesur/weasydoc/HEAD/man/convert_html2pdf_format.Rd -------------------------------------------------------------------------------- /man/extd_html_document_base.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLesur/weasydoc/HEAD/man/extd_html_document_base.Rd -------------------------------------------------------------------------------- /man/hpdf_book.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLesur/weasydoc/HEAD/man/hpdf_book.Rd -------------------------------------------------------------------------------- /man/hpdf_document.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLesur/weasydoc/HEAD/man/hpdf_document.Rd -------------------------------------------------------------------------------- /man/hpdf_document2.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLesur/weasydoc/HEAD/man/hpdf_document2.Rd -------------------------------------------------------------------------------- /man/hpdf_document_base.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLesur/weasydoc/HEAD/man/hpdf_document_base.Rd -------------------------------------------------------------------------------- /man/html4_document.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLesur/weasydoc/HEAD/man/html4_document.Rd -------------------------------------------------------------------------------- /man/html5_document.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLesur/weasydoc/HEAD/man/html5_document.Rd -------------------------------------------------------------------------------- /man/make_pdf.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLesur/weasydoc/HEAD/man/make_pdf.Rd -------------------------------------------------------------------------------- /man/wpdf_document.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLesur/weasydoc/HEAD/man/wpdf_document.Rd -------------------------------------------------------------------------------- /man/wpdf_document_base.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLesur/weasydoc/HEAD/man/wpdf_document_base.Rd -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLesur/weasydoc/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/.gitignore: -------------------------------------------------------------------------------- 1 | *.pdf 2 | ./*.html 3 | -------------------------------------------------------------------------------- /tests/testthat/css_file.css: -------------------------------------------------------------------------------- 1 | html {color: red;} 2 | -------------------------------------------------------------------------------- /tests/testthat/document.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLesur/weasydoc/HEAD/tests/testthat/document.Rmd -------------------------------------------------------------------------------- /tests/testthat/footnotes.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLesur/weasydoc/HEAD/tests/testthat/footnotes.Rmd -------------------------------------------------------------------------------- /tests/testthat/test-extd_html_document_base.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLesur/weasydoc/HEAD/tests/testthat/test-extd_html_document_base.R -------------------------------------------------------------------------------- /tests/testthat/test-hpdf_book.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLesur/weasydoc/HEAD/tests/testthat/test-hpdf_book.R -------------------------------------------------------------------------------- /tests/testthat/test-hpdf_document.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLesur/weasydoc/HEAD/tests/testthat/test-hpdf_document.R -------------------------------------------------------------------------------- /tests/testthat/test-hpdf_document_base.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLesur/weasydoc/HEAD/tests/testthat/test-hpdf_document_base.R -------------------------------------------------------------------------------- /tests/testthat/test-html5_document.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLesur/weasydoc/HEAD/tests/testthat/test-html5_document.R -------------------------------------------------------------------------------- /tests/testthat/test-make_pdf.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLesur/weasydoc/HEAD/tests/testthat/test-make_pdf.R -------------------------------------------------------------------------------- /tests/testthat/test-pdf-engines-as-postprocessors.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLesur/weasydoc/HEAD/tests/testthat/test-pdf-engines-as-postprocessors.R -------------------------------------------------------------------------------- /tests/testthat/test-utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLesur/weasydoc/HEAD/tests/testthat/test-utils.R -------------------------------------------------------------------------------- /tests/testthat/test-wpdf_document.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLesur/weasydoc/HEAD/tests/testthat/test-wpdf_document.R -------------------------------------------------------------------------------- /tests/testthat/test-wpdf_document_base.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLesur/weasydoc/HEAD/tests/testthat/test-wpdf_document_base.R -------------------------------------------------------------------------------- /tests/testthat/test_folder/html_file.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLesur/weasydoc/HEAD/tests/testthat/test_folder/html_file.html -------------------------------------------------------------------------------- /tests/testthat/test_folder/html_file_files/figure-html/pressure-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLesur/weasydoc/HEAD/tests/testthat/test_folder/html_file_files/figure-html/pressure-1.png -------------------------------------------------------------------------------- /weasydoc.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLesur/weasydoc/HEAD/weasydoc.Rproj --------------------------------------------------------------------------------