Make caseInsensitive a parameter

This commit is contained in:
Isaiah Odhner 2023-05-13 02:55:15 -04:00
parent e1245aa9e9
commit 838fb5d540

View File

@ -47,6 +47,7 @@ class FIGletFontWriter:
codeTagCount: int = 0,
hardBlank: str = "$",
endMark: str = "@",
caseInsensitive: bool = False
):
self.fontName = fontName
self.figChars: dict[int, str] = figChars
@ -62,7 +63,7 @@ class FIGletFontWriter:
self.verticalLayout = verticalLayout
self.hRule = [False] * 7
self.vRule = [False] * 7
self.caseInsensitive = False
self.caseInsensitive = caseInsensitive
def getOldLayoutValue(self) -> int:
val = 0