systems-obscure/scripts/transform-img-paths.js

10 lines
228 B
JavaScript
Raw Normal View History

2025-07-07 17:08:27 +01:00
const transformImagePaths = (markdown) => {
// Transform ./img/image-name to /posts/img/image-name
return markdown.replace(
/!\[([^\]]*)\]\(\.\/img\/([^)]+)\)/g,
"![$1](/posts/img/$2)"
)
}
export { transformImagePaths }