From ad6d97c3eed53f0c2af845ec0e58815e7b0a82c3 Mon Sep 17 00:00:00 2001 From: Ken Perry Date: Mon, 10 Aug 2026 15:47:53 -0400 Subject: [PATCH] Fix missing underline function in bbx.lua test with NVDA, jaws does not show the underline --- .../src/main/dist/programData/pandoc/lua/bbx.lua | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/brailleblaster-core/src/main/dist/programData/pandoc/lua/bbx.lua b/brailleblaster-core/src/main/dist/programData/pandoc/lua/bbx.lua index d92815eb..08680af4 100644 --- a/brailleblaster-core/src/main/dist/programData/pandoc/lua/bbx.lua +++ b/brailleblaster-core/src/main/dist/programData/pandoc/lua/bbx.lua @@ -293,6 +293,10 @@ function SmallCaps(s) return Strong(s) end +function Underline(s) + return '' .. s .. '' +end + function Strikeout(s) return s end