From cb0573ae2d797dfe2ec399b750438b9baa409446 Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Fri, 14 Apr 2023 20:03:16 -0700 Subject: [PATCH] fix: tag formatting --- src/posts/2022/simple-api-fetch-hooks-with-swr.md | 2 +- src/posts/2023/automating-and-overengineering-my-now-page.md | 2 +- src/posts/2023/automating-rss-syndication-with-nextjs-github.md | 2 +- .../2023/building-a-now-page-using-nextjs-and-social-apis.md | 2 +- src/posts/2023/client-side-webmentions-in-nextjs.md | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/posts/2022/simple-api-fetch-hooks-with-swr.md b/src/posts/2022/simple-api-fetch-hooks-with-swr.md index be19df53..218eeff7 100644 --- a/src/posts/2022/simple-api-fetch-hooks-with-swr.md +++ b/src/posts/2022/simple-api-fetch-hooks-with-swr.md @@ -2,7 +2,7 @@ title: 'Simple data fetching with custom React hooks and SWR' date: '2022-05-23' draft: false -tags: [swr, api, fetch, react, nextjs] +tags: [swr, api, fetch, react, next.js] --- My site was scaffolded out using [Timothy Lin](https://github.com/timlrx)'s [tailwind-nextjs-starter-blog](https://github.com/timlrx/tailwind-nextjs-starter-blog) project (which I highly recommend checking out). As part of the build out I wanted to display the books I'm currently reading and the song I most recently listened to, data available from [oku](https://oku.club) and [Last.fm](https://last.fm), respectively.[^1] I've added the display for this data to the top of the home page using a pair of light-weight React components. diff --git a/src/posts/2023/automating-and-overengineering-my-now-page.md b/src/posts/2023/automating-and-overengineering-my-now-page.md index 1406105d..dfe097e2 100644 --- a/src/posts/2023/automating-and-overengineering-my-now-page.md +++ b/src/posts/2023/automating-and-overengineering-my-now-page.md @@ -2,7 +2,7 @@ title: 'Automating (and probably overengineering) my /now page' date: '2023-02-06' draft: false -tags: ['automation', 'development', 'nextjs', 'javascript'] +tags: ['automation', 'development', 'next.js', 'javascript'] --- [omg.lol](https://home.omg.lol) (where I point my domain) and host most of my site content [recently launched support for /now pages](https://omglol.news/2023/01/16/now-pages-are-here). diff --git a/src/posts/2023/automating-rss-syndication-with-nextjs-github.md b/src/posts/2023/automating-rss-syndication-with-nextjs-github.md index e9795fcf..c0912266 100644 --- a/src/posts/2023/automating-rss-syndication-with-nextjs-github.md +++ b/src/posts/2023/automating-rss-syndication-with-nextjs-github.md @@ -2,7 +2,7 @@ title: 'Automating RSS syndication and sharing with Next.js and GitHub' date: 2023-02-23 draft: false -tags: ['nextjs', 'rss', 'automation', 'github'] +tags: ['next.js', 'rss', 'automation', 'github'] --- I wrote a basic syndication tool in Next.js to automate sharing items from configured RSS feeds to Mastodon. This tool works by leveraging a few basic configurations, the Mastodon API and a (reasonably) lightweight script that creates a JSON cache when initialized and posts new items on an hourly basis. diff --git a/src/posts/2023/building-a-now-page-using-nextjs-and-social-apis.md b/src/posts/2023/building-a-now-page-using-nextjs-and-social-apis.md index 505e4cbc..ae22e6ae 100644 --- a/src/posts/2023/building-a-now-page-using-nextjs-and-social-apis.md +++ b/src/posts/2023/building-a-now-page-using-nextjs-and-social-apis.md @@ -2,7 +2,7 @@ title: 'Building a now page using Next.js and social APIs' date: 2023-02-20 draft: false -tags: ['nextjs', 'web development', 'react', 'api'] +tags: ['next.js', 'react', 'api'] --- With my personal site now sitting at Vercel and written in Next.js I decided to rework my [now](https://coryd.dev/now) page by leveraging a variety of social APIs. I kicked things off by looking through various platforms I use regularly and tracking down those that provide either API access or RSS feeds. For those with APIs I wrote code to access my data via said APIs, for those with feeds only I've leveraged [@extractus/feed-extractor](https://www.npmjs.com/package/@extractus/feed-extractor) to transform them to JSON responses. diff --git a/src/posts/2023/client-side-webmentions-in-nextjs.md b/src/posts/2023/client-side-webmentions-in-nextjs.md index bf291a88..649d18ee 100644 --- a/src/posts/2023/client-side-webmentions-in-nextjs.md +++ b/src/posts/2023/client-side-webmentions-in-nextjs.md @@ -2,7 +2,7 @@ title: 'Adding client side webmentions to my Next.js blog' date: 2023-02-18 draft: false -tags: ['nextjs', 'react', 'web development', 'webmentions', 'indie web'] +tags: ['next.js', 'react', 'web development', 'indie web'] --- The latest iteration of my website is built on [Next.js](https://nextjs.org), specifically [Timothy Lin](https://github.com/timlrx)'s wonderful [Tailwind/Next.js starter blog.](https://github.com/timlrx/tailwind-nextjs-starter-blog). I've modified it quite a bit, altering the color scheme, dropping components like analytics, comments and a few others while also building out some new pages (like my [now page](https://coryd.dev/now)). As part of this process I wanted to add support for webmentions to the template, integrating mentions from Mastodon, Medium.com and other available sources.