gofmt
This commit is contained in:
parent
dcb802358b
commit
705cfc1d49
|
@ -9,6 +9,7 @@ import (
|
||||||
)
|
)
|
||||||
|
|
||||||
type insertionType int
|
type insertionType int
|
||||||
|
|
||||||
const (
|
const (
|
||||||
insertionOpening insertionType = iota
|
insertionOpening insertionType = iota
|
||||||
insertionClosing
|
insertionClosing
|
||||||
|
@ -16,6 +17,7 @@ const (
|
||||||
)
|
)
|
||||||
|
|
||||||
type MarkupModeType int
|
type MarkupModeType int
|
||||||
|
|
||||||
const (
|
const (
|
||||||
MarkupModeXEP0393 MarkupModeType = iota
|
MarkupModeXEP0393 MarkupModeType = iota
|
||||||
MarkupModeMarkdown
|
MarkupModeMarkdown
|
||||||
|
@ -216,7 +218,7 @@ func quotePrependNewlines(entity *client.TextEntity, doubledRunes []rune, markup
|
||||||
isNewline := doubledRunes[i] == newlineCode
|
isNewline := doubledRunes[i] == newlineCode
|
||||||
if (isNewline && markupMode == MarkupModeXEP0393) || (wasNewline && isNewline && markupMode == MarkupModeMarkdown) {
|
if (isNewline && markupMode == MarkupModeXEP0393) || (wasNewline && isNewline && markupMode == MarkupModeMarkdown) {
|
||||||
insertions = append(insertions, &insertion{
|
insertions = append(insertions, &insertion{
|
||||||
Offset: i+1,
|
Offset: i + 1,
|
||||||
Runes: quoteRunes,
|
Runes: quoteRunes,
|
||||||
Type: insertionUnpaired,
|
Type: insertionUnpaired,
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in a new issue