generated at
UserCSS:ページリストの見出しに文末に応じた絵文字をつける
ページタイトルの行末のサフィックスに応じて違うアイコンを先頭に追加する
style.css
/* %2F は '/' のこと */

style.css
/* 文末 /wip で空のチェックボックスを表示 */ /* wip : work in progress = 作業中 */ .grid li.page-list-item > a[href$="%2Fwip" i] > .content > .header > .title::before { content: '⬜️ '; /* */ }

style.css
/* 文末 /done で完了のチェックボックスを表示 */ .grid li.page-list-item > a[href$="%2Fdone" i] > .content > .header > .title::before { content: '✅ '; /* */ }

style.css
/* 文末 /tbd で保留のチェックボックスを表示 */ /* tbd : to be determine = あとで決める、保留 */ .grid li.page-list-item > a[href$="%2Ftbd" i] > .content > .header > .title::before { content: '🟥 '; /* */ }


UserCSS