gitextract_u6vogus0/ ├── .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 │ ├── 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 ├── tests/ │ ├── 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 │ │ └── widget.Rmd │ └── testthat.R └── vignettes/ ├── .gitignore ├── config.Rmd └── deploy.Rmd