From 8c8a2cdb4b2dceffb0d90cdaa272884e9433ce95 Mon Sep 17 00:00:00 2001 From: UndeadMaelys Date: Tue, 22 Mar 2022 17:23:00 +0100 Subject: [PATCH] added notes to the detailed view --- output_word.lua | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/output_word.lua b/output_word.lua index e668872..1bd9a1a 100644 --- a/output_word.lua +++ b/output_word.lua @@ -33,6 +33,12 @@ return function(tbl) print(text) end print("") + if this_word[6] ~= "" then + text = text .. colorText(COLOR.HighYellow,"\tNotes: ") + text = text .. colorText(COLOR.HighYellow,this_word[6]) + print(text) + end + print("") end end end