From eeadad213b83989246847163c34b24af2112a92f Mon Sep 17 00:00:00 2001 From: Charlotte Wickham Date: Mon, 18 May 2026 10:56:09 -0700 Subject: [PATCH 1/2] Drop incorrect ported_from from anscombes-quartet The post was originally hosted externally (jeroenjanssens.com), so it was never ported from plotnine.org. Keep `source: plotnine` so it still appears on the plotnine project listing, but remove `ported_from` and `port_status` since there's no port to track. --- content/blog/anscombes-quartet/index.md | 2 -- 1 file changed, 2 deletions(-) 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"] From 765c008105f81ab443b7afde03912ee77d1de294 Mon Sep 17 00:00:00 2001 From: Charlotte Wickham Date: Mon, 18 May 2026 10:56:21 -0700 Subject: [PATCH 2/2] Pick up .html posts in blog metadata extractor hugodown-rendered tidyverse posts publish as index.html rather than index.md. The pattern previously matched only `.md` and `.markdown`, so these posts were invisible to anything consuming posts.json. Add `.html` to the pattern so all published frontmatter is enumerated. --- scripts/extract-blog-metadata.R | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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