17 lines
231 B
Go
17 lines
231 B
Go
// SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
|
|
|
|
package saver2v3
|
|
|
|
import (
|
|
"fmt"
|
|
"strings"
|
|
)
|
|
|
|
func textify(s string) string {
|
|
if strings.Contains(s, "\n") {
|
|
return fmt.Sprintf("<text>%s</text>", s)
|
|
}
|
|
|
|
return s
|
|
}
|