├── .Rbuildignore ├── .gitattributes ├── .github ├── .gitignore └── workflows │ ├── R-CMD-check.yaml │ ├── pkgdown.yaml │ ├── pr-commands.yaml │ └── test-coverage.yaml ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── R ├── hugo-install.R ├── hugo-server.R ├── hugo-version.R ├── hugo.R ├── hugodown-package.R ├── md-document.R ├── netlify.R ├── post.R ├── shortcode.R ├── site-academic.R ├── site.R ├── test-fixtures.R ├── tidy.R └── utils.R ├── README.md ├── _pkgdown.yml ├── codecov.yml ├── hugodown.Rproj ├── inst ├── academic │ ├── README.md │ ├── highlight-dark.css │ ├── highlight-light.css │ └── index.Rmd └── templates │ ├── netlify.toml │ └── template.Rproj ├── man ├── create_site_academic.Rd ├── embed_gist.Rd ├── figures │ └── logo.png ├── hugo_build.Rd ├── hugo_document.Rd ├── hugo_install.Rd ├── hugo_locate.Rd ├── hugo_start.Rd ├── hugo_version.Rd ├── hugodown-package.Rd ├── md_document.Rd ├── shortcode.Rd ├── site_outdated.Rd ├── use_netlify_toml.Rd ├── use_post.Rd └── use_tidy_post.Rd ├── pkgdown └── favicon │ ├── apple-touch-icon-120x120.png │ ├── apple-touch-icon-152x152.png │ ├── apple-touch-icon-180x180.png │ ├── apple-touch-icon-60x60.png │ ├── apple-touch-icon-76x76.png │ ├── apple-touch-icon.png │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ └── favicon.ico ├── tests ├── testthat.R └── testthat │ ├── .gitignore │ ├── _snaps │ └── md-document.md │ ├── archetypes │ ├── _hugodown.yaml │ ├── archetypes │ │ ├── Rmd │ │ │ └── index.Rmd │ │ ├── blog │ │ │ └── index.Rmd │ │ └── md │ │ │ └── index.md │ └── config.yml │ ├── code-invalid.Rmd │ ├── code.Rmd │ ├── config-hugodown │ ├── _hugodown.yaml │ └── config.yaml │ ├── config-toml │ └── config.toml │ ├── config-yaml │ └── config.yaml │ ├── config-yml │ └── config.yml │ ├── curly.Rmd │ ├── div.Rmd │ ├── emoji.Rmd │ ├── error.Rmd │ ├── knit-hooks.Rmd │ ├── math.Rmd │ ├── meta.Rmd │ ├── minimal │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── _hugodown.yaml │ ├── config.toml │ ├── content │ │ └── _index.md │ └── themes │ │ └── bare │ │ ├── layouts │ │ └── index.html │ │ └── theme.toml │ ├── outdated │ ├── config.yml │ └── content │ │ └── blog │ │ ├── _index.md │ │ ├── ok-has-html │ │ ├── index.Rmd │ │ └── index.html │ │ ├── ok-no-hash │ │ ├── index.Rmd │ │ └── index.md │ │ ├── outdated-no-md │ │ └── index.Rmd │ │ └── outdated-old-hash │ │ ├── index.Rmd │ │ └── index.md │ ├── output.Rmd │ ├── plot.Rmd │ ├── raw-html.Rmd │ ├── table.Rmd │ ├── test-hugo-install.R │ ├── test-hugo-server.R │ ├── test-hugo-version.R │ ├── test-hugo.R │ ├── test-md-document.R │ ├── test-netlify.R │ ├── test-post.R │ ├── test-shortcode-arguments.txt │ ├── test-shortcode-embed.txt │ ├── test-shortcode-wrapper.txt │ ├── test-shortcode.R │ ├── test-site.R │ ├── test-tidy-pleased.txt │ ├── test-tidy.R │ ├── thumbs │ ├── not-square │ │ ├── thumbnail-sq.jpg │ │ └── thumbnail-wd.jpg │ ├── ok │ │ ├── thumbnail-sq.jpg │ │ └── thumbnail-wd.jpg │ └── too-narrow │ │ ├── thumbnail-sq.jpg │ │ └── thumbnail-wd.jpg │ └── widget.Rmd └── vignettes ├── .gitignore ├── config.Rmd ├── deploy.Rmd ├── github-setup.png ├── netlify-deploy-settings.png ├── netlify-landing.png └── netlify-sign-up.png /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.Rmd text eol=lf 2 | -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/pkgdown.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/.github/workflows/pkgdown.yaml -------------------------------------------------------------------------------- /.github/workflows/pr-commands.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/.github/workflows/pr-commands.yaml -------------------------------------------------------------------------------- /.github/workflows/test-coverage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/.github/workflows/test-coverage.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2020 2 | COPYRIGHT HOLDER: RStudio 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/hugo-install.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/R/hugo-install.R -------------------------------------------------------------------------------- /R/hugo-server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/R/hugo-server.R -------------------------------------------------------------------------------- /R/hugo-version.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/R/hugo-version.R -------------------------------------------------------------------------------- /R/hugo.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/R/hugo.R -------------------------------------------------------------------------------- /R/hugodown-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/R/hugodown-package.R -------------------------------------------------------------------------------- /R/md-document.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/R/md-document.R -------------------------------------------------------------------------------- /R/netlify.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/R/netlify.R -------------------------------------------------------------------------------- /R/post.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/R/post.R -------------------------------------------------------------------------------- /R/shortcode.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/R/shortcode.R -------------------------------------------------------------------------------- /R/site-academic.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/R/site-academic.R -------------------------------------------------------------------------------- /R/site.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/R/site.R -------------------------------------------------------------------------------- /R/test-fixtures.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/R/test-fixtures.R -------------------------------------------------------------------------------- /R/tidy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/R/tidy.R -------------------------------------------------------------------------------- /R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/R/utils.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/_pkgdown.yml -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/codecov.yml -------------------------------------------------------------------------------- /hugodown.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/hugodown.Rproj -------------------------------------------------------------------------------- /inst/academic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/inst/academic/README.md -------------------------------------------------------------------------------- /inst/academic/highlight-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/inst/academic/highlight-dark.css -------------------------------------------------------------------------------- /inst/academic/highlight-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/inst/academic/highlight-light.css -------------------------------------------------------------------------------- /inst/academic/index.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/inst/academic/index.Rmd -------------------------------------------------------------------------------- /inst/templates/netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/inst/templates/netlify.toml -------------------------------------------------------------------------------- /inst/templates/template.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/inst/templates/template.Rproj -------------------------------------------------------------------------------- /man/create_site_academic.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/man/create_site_academic.Rd -------------------------------------------------------------------------------- /man/embed_gist.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/man/embed_gist.Rd -------------------------------------------------------------------------------- /man/figures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/man/figures/logo.png -------------------------------------------------------------------------------- /man/hugo_build.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/man/hugo_build.Rd -------------------------------------------------------------------------------- /man/hugo_document.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/man/hugo_document.Rd -------------------------------------------------------------------------------- /man/hugo_install.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/man/hugo_install.Rd -------------------------------------------------------------------------------- /man/hugo_locate.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/man/hugo_locate.Rd -------------------------------------------------------------------------------- /man/hugo_start.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/man/hugo_start.Rd -------------------------------------------------------------------------------- /man/hugo_version.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/man/hugo_version.Rd -------------------------------------------------------------------------------- /man/hugodown-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/man/hugodown-package.Rd -------------------------------------------------------------------------------- /man/md_document.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/man/md_document.Rd -------------------------------------------------------------------------------- /man/shortcode.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/man/shortcode.Rd -------------------------------------------------------------------------------- /man/site_outdated.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/man/site_outdated.Rd -------------------------------------------------------------------------------- /man/use_netlify_toml.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/man/use_netlify_toml.Rd -------------------------------------------------------------------------------- /man/use_post.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/man/use_post.Rd -------------------------------------------------------------------------------- /man/use_tidy_post.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/man/use_tidy_post.Rd -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/pkgdown/favicon/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/pkgdown/favicon/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/pkgdown/favicon/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/pkgdown/favicon/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/pkgdown/favicon/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/pkgdown/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/pkgdown/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/pkgdown/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/pkgdown/favicon/favicon.ico -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/.gitignore: -------------------------------------------------------------------------------- 1 | knit-hooks_files 2 | -------------------------------------------------------------------------------- /tests/testthat/_snaps/md-document.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/tests/testthat/_snaps/md-document.md -------------------------------------------------------------------------------- /tests/testthat/archetypes/_hugodown.yaml: -------------------------------------------------------------------------------- 1 | hugo_version: 0.72.0 2 | -------------------------------------------------------------------------------- /tests/testthat/archetypes/archetypes/Rmd/index.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/tests/testthat/archetypes/archetypes/Rmd/index.Rmd -------------------------------------------------------------------------------- /tests/testthat/archetypes/archetypes/blog/index.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/tests/testthat/archetypes/archetypes/blog/index.Rmd -------------------------------------------------------------------------------- /tests/testthat/archetypes/archetypes/md/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/tests/testthat/archetypes/archetypes/md/index.md -------------------------------------------------------------------------------- /tests/testthat/archetypes/config.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testthat/code-invalid.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/tests/testthat/code-invalid.Rmd -------------------------------------------------------------------------------- /tests/testthat/code.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/tests/testthat/code.Rmd -------------------------------------------------------------------------------- /tests/testthat/config-hugodown/_hugodown.yaml: -------------------------------------------------------------------------------- 1 | test: true 2 | hugo_version: 0.66.0 3 | -------------------------------------------------------------------------------- /tests/testthat/config-hugodown/config.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testthat/config-toml/config.toml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testthat/config-yaml/config.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testthat/config-yml/config.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testthat/curly.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/tests/testthat/curly.Rmd -------------------------------------------------------------------------------- /tests/testthat/div.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/tests/testthat/div.Rmd -------------------------------------------------------------------------------- /tests/testthat/emoji.Rmd: -------------------------------------------------------------------------------- 1 | --- 2 | output: hugodown::md_document 3 | --- 4 | 5 | :smile_cat: 6 | -------------------------------------------------------------------------------- /tests/testthat/error.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/tests/testthat/error.Rmd -------------------------------------------------------------------------------- /tests/testthat/knit-hooks.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/tests/testthat/knit-hooks.Rmd -------------------------------------------------------------------------------- /tests/testthat/math.Rmd: -------------------------------------------------------------------------------- 1 | --- 2 | output: hugodown::md_document 3 | --- 4 | 5 | $a_1 + b_2$ 6 | -------------------------------------------------------------------------------- /tests/testthat/meta.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/tests/testthat/meta.Rmd -------------------------------------------------------------------------------- /tests/testthat/minimal/.gitignore: -------------------------------------------------------------------------------- 1 | public 2 | -------------------------------------------------------------------------------- /tests/testthat/minimal/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/tests/testthat/minimal/LICENSE -------------------------------------------------------------------------------- /tests/testthat/minimal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/tests/testthat/minimal/README.md -------------------------------------------------------------------------------- /tests/testthat/minimal/_hugodown.yaml: -------------------------------------------------------------------------------- 1 | hugo_version: 0.72.0 2 | -------------------------------------------------------------------------------- /tests/testthat/minimal/config.toml: -------------------------------------------------------------------------------- 1 | baseURL = "http://example.org/" 2 | theme = "bare" -------------------------------------------------------------------------------- /tests/testthat/minimal/content/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/tests/testthat/minimal/content/_index.md -------------------------------------------------------------------------------- /tests/testthat/minimal/themes/bare/layouts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/tests/testthat/minimal/themes/bare/layouts/index.html -------------------------------------------------------------------------------- /tests/testthat/minimal/themes/bare/theme.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/tests/testthat/minimal/themes/bare/theme.toml -------------------------------------------------------------------------------- /tests/testthat/outdated/config.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testthat/outdated/content/blog/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Blog 3 | --- 4 | -------------------------------------------------------------------------------- /tests/testthat/outdated/content/blog/ok-has-html/index.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/tests/testthat/outdated/content/blog/ok-has-html/index.Rmd -------------------------------------------------------------------------------- /tests/testthat/outdated/content/blog/ok-has-html/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testthat/outdated/content/blog/ok-no-hash/index.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/tests/testthat/outdated/content/blog/ok-no-hash/index.Rmd -------------------------------------------------------------------------------- /tests/testthat/outdated/content/blog/ok-no-hash/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/tests/testthat/outdated/content/blog/ok-no-hash/index.md -------------------------------------------------------------------------------- /tests/testthat/outdated/content/blog/outdated-no-md/index.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/tests/testthat/outdated/content/blog/outdated-no-md/index.Rmd -------------------------------------------------------------------------------- /tests/testthat/outdated/content/blog/outdated-old-hash/index.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/tests/testthat/outdated/content/blog/outdated-old-hash/index.Rmd -------------------------------------------------------------------------------- /tests/testthat/outdated/content/blog/outdated-old-hash/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/tests/testthat/outdated/content/blog/outdated-old-hash/index.md -------------------------------------------------------------------------------- /tests/testthat/output.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/tests/testthat/output.Rmd -------------------------------------------------------------------------------- /tests/testthat/plot.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/tests/testthat/plot.Rmd -------------------------------------------------------------------------------- /tests/testthat/raw-html.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/tests/testthat/raw-html.Rmd -------------------------------------------------------------------------------- /tests/testthat/table.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/tests/testthat/table.Rmd -------------------------------------------------------------------------------- /tests/testthat/test-hugo-install.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/tests/testthat/test-hugo-install.R -------------------------------------------------------------------------------- /tests/testthat/test-hugo-server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/tests/testthat/test-hugo-server.R -------------------------------------------------------------------------------- /tests/testthat/test-hugo-version.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/tests/testthat/test-hugo-version.R -------------------------------------------------------------------------------- /tests/testthat/test-hugo.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/tests/testthat/test-hugo.R -------------------------------------------------------------------------------- /tests/testthat/test-md-document.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/tests/testthat/test-md-document.R -------------------------------------------------------------------------------- /tests/testthat/test-netlify.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/tests/testthat/test-netlify.R -------------------------------------------------------------------------------- /tests/testthat/test-post.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/tests/testthat/test-post.R -------------------------------------------------------------------------------- /tests/testthat/test-shortcode-arguments.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/tests/testthat/test-shortcode-arguments.txt -------------------------------------------------------------------------------- /tests/testthat/test-shortcode-embed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/tests/testthat/test-shortcode-embed.txt -------------------------------------------------------------------------------- /tests/testthat/test-shortcode-wrapper.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/tests/testthat/test-shortcode-wrapper.txt -------------------------------------------------------------------------------- /tests/testthat/test-shortcode.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/tests/testthat/test-shortcode.R -------------------------------------------------------------------------------- /tests/testthat/test-site.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/tests/testthat/test-site.R -------------------------------------------------------------------------------- /tests/testthat/test-tidy-pleased.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/tests/testthat/test-tidy-pleased.txt -------------------------------------------------------------------------------- /tests/testthat/test-tidy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/tests/testthat/test-tidy.R -------------------------------------------------------------------------------- /tests/testthat/thumbs/not-square/thumbnail-sq.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/tests/testthat/thumbs/not-square/thumbnail-sq.jpg -------------------------------------------------------------------------------- /tests/testthat/thumbs/not-square/thumbnail-wd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/tests/testthat/thumbs/not-square/thumbnail-wd.jpg -------------------------------------------------------------------------------- /tests/testthat/thumbs/ok/thumbnail-sq.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/tests/testthat/thumbs/ok/thumbnail-sq.jpg -------------------------------------------------------------------------------- /tests/testthat/thumbs/ok/thumbnail-wd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/tests/testthat/thumbs/ok/thumbnail-wd.jpg -------------------------------------------------------------------------------- /tests/testthat/thumbs/too-narrow/thumbnail-sq.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/tests/testthat/thumbs/too-narrow/thumbnail-sq.jpg -------------------------------------------------------------------------------- /tests/testthat/thumbs/too-narrow/thumbnail-wd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/tests/testthat/thumbs/too-narrow/thumbnail-wd.jpg -------------------------------------------------------------------------------- /tests/testthat/widget.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/tests/testthat/widget.Rmd -------------------------------------------------------------------------------- /vignettes/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.R 3 | -------------------------------------------------------------------------------- /vignettes/config.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/vignettes/config.Rmd -------------------------------------------------------------------------------- /vignettes/deploy.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/vignettes/deploy.Rmd -------------------------------------------------------------------------------- /vignettes/github-setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/vignettes/github-setup.png -------------------------------------------------------------------------------- /vignettes/netlify-deploy-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/vignettes/netlify-deploy-settings.png -------------------------------------------------------------------------------- /vignettes/netlify-landing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/vignettes/netlify-landing.png -------------------------------------------------------------------------------- /vignettes/netlify-sign-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/hugodown/HEAD/vignettes/netlify-sign-up.png --------------------------------------------------------------------------------