一旦改行を消して句点で改行し直すPopupMenu
2023-10-02 04:47:29 英単語の改行を消すときは、半角スペースを入れる
2023-02-06 22:07:30 改行し直す必要がない場合は表示しない
code:script.js
scrapbox.PopupMenu.addButton({
title: (text) => /\n..。/.test(text) ? "\\n" : "", onClick: (text) => text
.replace(/(\w)\n(\w)/g, "$1 $2")
.replaceAll("\n", "")
.replaceAll(".", ".\n")
.replaceAll(".", ".\n")
.replaceAll("。", "。\n"),
});