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