From c34fb10c4c976a9943391a6d5f2fce210985fdc7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=CC=B7O=CC=B7N=CC=B7D=CC=B7O=CC=B7N=CC=B7=E5=B0=91?= =?UTF-8?q?=E6=9E=97?= <22037550+Shivawkes@users.noreply.github.com> Date: Tue, 21 Jan 2025 08:30:57 -0500 Subject: [PATCH] index.ts Added code to use MFM to colorize Notes based on config.json file. --- src/modules/noting/index.ts | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/src/modules/noting/index.ts b/src/modules/noting/index.ts index 6d38bce..cad7a4f 100644 --- a/src/modules/noting/index.ts +++ b/src/modules/noting/index.ts @@ -39,11 +39,20 @@ export default class extends Module { ]; const note = notes[Math.floor(Math.random() * notes.length)]; + let noteText = typeof note === 'function' ? note() : note; + + // Add red text functionality based on config.json + if (config.colorNotes) { + noteText = '$[fg.red ' + noteText + ']'; + } // TODO: 季節に応じたセリフ - this.ai.post({ - text: typeof note === 'function' ? note() : note + text: noteText + + //this.ai.post({ + // text: typeof note === 'function' ? note() : note + }); } }