UNPKG

ap-ssg

Version:

A fast, modular, SEO-optimized static site generator that minifies CSS, JS, and HTML for improved performance. It also supports JSON-LD, sitemap generation, and more, making it ideal for production-ready websites.

12 lines (9 loc) 295 B
const regexPattern = /<img([^>]+)\/>/g; function removeImgClosingSlash(text) { return text.replace(regexPattern, (match, p1) => { // console.log({ match, p1 }); // Replace the trailing "/>" with ">" return `<img${p1}>`; }); } module.exports = removeImgClosingSlash;