diff --git a/content/blog/anscombes-quartet/index.md b/content/blog/anscombes-quartet/index.md index 05682a9af..528b4772d 100644 --- a/content/blog/anscombes-quartet/index.md +++ b/content/blog/anscombes-quartet/index.md @@ -7,9 +7,7 @@ people: date: '2024-07-02' image: ruthson-zimmerman-FVwG5OzPuzo-unsplash.jpg image-alt: Hands typing on a laptop showing a data dashboard on the screen -ported_from: plotnine source: plotnine -port_status: in-progress topics: - Visualization software: ["plotnine"] diff --git a/scripts/extract-blog-metadata.R b/scripts/extract-blog-metadata.R index a749e60f5..1a28197ff 100644 --- a/scripts/extract-blog-metadata.R +++ b/scripts/extract-blog-metadata.R @@ -7,11 +7,11 @@ library(jsonlite) posts_dir <- "content/blog" source_extensions <- c(".qmd", ".Rmd", ".Rmarkdown", ".ipynb") -# Find all index.md files in blog post directories +# Find all published blog post files (.md, .markdown, or .html with frontmatter) md_files <- list.files( posts_dir, - pattern = "^index\\.(md|markdown)$", + pattern = "^index\\.(md|markdown|html)$", recursive = TRUE, full.names = TRUE