Skip to content

How to change image URLs in a markdown string

New Course Coming Soon:

Get Really Good at Git

I was trying to see if moving my blog (based on Hugo) to Next.js was a good move (it wasn’t) and I found a problem.

Hugo allows me to use spaces in images, which is handy especially as I use screenshots and I get those named as Screen Shot 2022-... by default.

The Next.js markdown does not allow that. So I had a script that converted all images names to use hyphens instead of spaces

"Screen Shot 2022-..." 

=> 

"Screen-Shot-2022-..."

and then I replaced the post markdown content with that.

Also I had to change the URL because Hugo allows a post to be in the same folder as the markdown file, while Next.js does not.

So I used a /public/images/<SLUG>/ folder format to make each post image public.

Here’s how I did that:

import matter from 'gray-matter'

...

let { data: frontmatter, content } = matter(fileName)

const regex = /\!\[(.*?)\]\((.*?)\)/gm
let matches

while ((matches = regex.exec(content)) !== null) {
  content = content.replace(
      '](' + matches[2],
      `](/images/${slug}/${matches[2].replace(/ /g, '-').replace(/\//g, '')}`
  )
}
Are you intimidated by Git? Can’t figure out merge vs rebase? Are you afraid of screwing up something any time you have to do something in Git? Do you rely on ChatGPT or random people’s answer on StackOverflow to fix your problems? Your coworkers are tired of explaining Git to you all the time? Git is something we all need to use, but few of us really master it. I created this course to improve your Git (and GitHub) knowledge at a radical level. A course that helps you feel less frustrated with Git. Launching Summer 2024. Join the waiting list!
→ Get my JavaScript Beginner's Handbook
→ Read my JavaScript Tutorials on The Valley of Code
→ Read my TypeScript Tutorial on The Valley of Code

Here is how can I help you: