スニペット
覚え書きのコード片
ブラウザの開発者モードのコンソールで全画像のURLを抽出
console.log([...document.querySelectorAll("img")].map((img)=>img.src).join('\n'))
VSCode:画像URL→Markdown表記の置換
検索文字列:(https:.*)
置換文字列:[]($1)
vinca.log
覚え書きのコード片
console.log([...document.querySelectorAll("img")].map((img)=>img.src).join('\n'))
検索文字列:(https:.*)
置換文字列:[]($1)