From e77597179d9d91dc6cca31294e6b3aba206b9732 Mon Sep 17 00:00:00 2001 From: onevcat Date: Mon, 1 Mar 2021 18:08:18 +0900 Subject: [PATCH] Add strikethrough style --- Sources/Style.swift | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Sources/Style.swift b/Sources/Style.swift index fd92aa9..02878af 100644 --- a/Sources/Style.swift +++ b/Sources/Style.swift @@ -33,7 +33,8 @@ public enum Style: UInt8, ModeCode { case underline = 4 case blink = 5 case swap = 7 - + case strikethrough = 9 + public var value: [UInt8] { return [rawValue] }