UNPKG

eleventy-plugin-embed-itch-io

Version:

11ty plugin for automatically embedding an Itch.io widgets from a game page url.

12 lines (11 loc) 246 B
module.exports = (match) => { let fullMatch, url; [ fullMatch, // Full match , , url, // Itch.io URL without protocol ] = match; const itchUrl = `https://${url}`; return {itchUrl, fullMatch}; }