選択したテキストの前後にh2タグをつけるポップアップメニュー
テキスト
を選択したら、その前後を
H2タグ
で囲む。
https://gyazo.com/ef55c5be8d4d100e3d536f2bed8a1b75
code:script.js
scrapbox.PopupMenu.addButton({
title: 'h2',
onClick: function (text) {
text = '<h2>' + text + '</h2>';
return text;
}
});
#Popup_Menu
#UserScript