readable-link-compatibility
warning.icon気づいたその場でScrapbox のタイトルを変えればOKな気もします。
https://gyazo.com/ea7aa91d088bcb1a58a8deee13826b50
「<」のような文字をページタイトルに書くと、赤色の「!」が表示されます。
https://gyazo.com/0a60ffea2d4b2b4eaeaa4006b941f3e8
「!」を出すべき文字はリスト管理しているため、「!」が出てくれない文字はまだあります。
インストール
code: script.js
import '/api/code/hata6502/readable-link-compatibility/index.js';
スクリプト
code: index.js
let warningIcon;
setInterval(() => {
warningIcon?.remove();
const lineTitleText = document.querySelector('.lines .line-title .text');
if (!/["%<>\\\\\^`{|}]/.test(lineTitleText?.textContent ?? '')) { return;
}
warningIcon = document.createElement('span');
warningIcon.style.position = 'absolute';
warningIcon.style.left = '100%';
warningIcon.style.color = 'red';
warningIcon.textContent = '!';
lineTitleText.prepend(warningIcon);
}, 1000);