エンベッドのスクリプト
このプロジェクトでsvgデータの埋め込みを見つけたので、任意のURLからsvgにするスクリプトを書いた 任意のURLを選択して、「サムネ」を押すと、埋め込み画像になる。
code:js
// 関数の定義
const thumbnail = text => {
if(text.startsWith('http'))
return \[${url_head}${text}#.svg ${text}\];
}
// ポップアップボタンに追加
const title = "サムネ";
scrapbox.PopupMenu.addButton({
title: title,
onClick: thumbnail
})