From 705cfc1d496f96875da5c13209f0b78803183843 Mon Sep 17 00:00:00 2001 From: Bohdan Horbeshko Date: Thu, 16 Nov 2023 08:06:21 -0500 Subject: gofmt --- telegram/formatter/formatter.go | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'telegram/formatter') diff --git a/telegram/formatter/formatter.go b/telegram/formatter/formatter.go index 9403198..6da8256 100644 --- a/telegram/formatter/formatter.go +++ b/telegram/formatter/formatter.go @@ -9,6 +9,7 @@ import ( ) type insertionType int + const ( insertionOpening insertionType = iota insertionClosing @@ -16,6 +17,7 @@ const ( ) type MarkupModeType int + const ( MarkupModeXEP0393 MarkupModeType = iota MarkupModeMarkdown @@ -216,7 +218,7 @@ func quotePrependNewlines(entity *client.TextEntity, doubledRunes []rune, markup isNewline := doubledRunes[i] == newlineCode if (isNewline && markupMode == MarkupModeXEP0393) || (wasNewline && isNewline && markupMode == MarkupModeMarkdown) { insertions = append(insertions, &insertion{ - Offset: i+1, + Offset: i + 1, Runes: quoteRunes, Type: insertionUnpaired, }) @@ -388,7 +390,7 @@ func Format( if ins1.Offset == ins2.Offset { if ins2.Type == insertionOpening { // > ** return true - } else if ins2.Type == insertionClosing { // **> + } else if ins2.Type == insertionClosing { // **> return false } } else { @@ -399,7 +401,7 @@ func Format( if ins1.Offset == ins2.Offset { if ins1.Type == insertionOpening { // > ** return false - } else if ins1.Type == insertionClosing { // **> + } else if ins1.Type == insertionClosing { // **> return true } } else { -- cgit v1.2.3