diff --git a/pkgdown/_pkgdown.yml b/pkgdown/_pkgdown.yml index ef9b21dca..1cdcda88b 100644 --- a/pkgdown/_pkgdown.yml +++ b/pkgdown/_pkgdown.yml @@ -51,6 +51,8 @@ articles: easily be tested automatically. contents: - starts_with("test") + - articles/test-rmarkdown-article + - articles/test-quarto-article reference: - title: Build diff --git a/vignettes/articles/test-quarto-article.qmd b/vignettes/articles/test-quarto-article.qmd new file mode 100644 index 000000000..0f609928d --- /dev/null +++ b/vignettes/articles/test-quarto-article.qmd @@ -0,0 +1,7 @@ +--- +title: "Test quarto article" +format: html +editor: visual +--- + +This article should appear on the pkgdown site but not in the built package. diff --git a/vignettes/articles/test-rmarkdown-article.Rmd b/vignettes/articles/test-rmarkdown-article.Rmd new file mode 100644 index 000000000..3fce81a23 --- /dev/null +++ b/vignettes/articles/test-rmarkdown-article.Rmd @@ -0,0 +1,7 @@ +--- +title: "Test Rmarkdown article" +output: html_document +date: "2024-11-27" +--- + +This article should appear on the pkgdown site but not in the built package.