generated at
svg URLを画像にするPopup Menu
svg形式の画像/テキストURLをsvg形式のテキストを画像にするserverless functionのAPIを使用したURLに変換するPopupMenu

script.js
scrapbox.PopupMenu.addButton({ title: text => /https?:\/\/\S+\.svg\s*/.test(text) ? 'SVG' : '', onClick: text => { if (!/https?:\/\/\S+\.svg\s*/.test(text)) return; // SVG URLがなければ何もしない // コードブロック記法の変換 //let result = text.replace(/https:\/\/scrapbox.io\/api\/code\/([^\/]+)\/([^\/]+)\/(\S+)/g, // 'https://svg-hosting.vercel.app/scrapbox.io/$1/$2/$3'); return text.replace(/(https?:\/\/\S+\.svg)\s*/g,`[https://svg-hosting.vercel.app/api/svg?url=$1]`); }, });

#2021-05-26 14:40:52