• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
2
3package saver2v2
4
5import (
6	"fmt"
7	"strings"
8)
9
10func textify(s string) string {
11	if strings.Contains(s, "\n") {
12		return fmt.Sprintf("<text>%s</text>", s)
13	}
14
15	return s
16}
17