1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
|
package textutil
import (
"strings"
)
// SplitLinesBytes splits data into lines, handling both \n and \r\n endings.
// The returned slices share the underlying data array.
func SplitLinesBytes(data []byte) [][]byte {
var lines [][]byte
start := 0
for i := 0; i < len(data); i++ {
if data[i] == '\n' {
end := i
if end > start && data[end-1] == '\r' {
end--
}
lines = append(lines, data[start:end])
start = i + 1
}
}
// Handle last line if it doesn't end with newline
if start < len(data) {
lines = append(lines, data[start:])
}
return lines
}
// RenderTemplate performs simple {{var}} replacement in a template string.
func RenderTemplate(t string, vars map[string]string) string {
if t == "" || len(vars) == 0 {
return t
}
out := t
for k, v := range vars {
out = strings.ReplaceAll(out, "{{"+k+"}}", v)
}
return out
}
// StripCodeFences removes surrounding Markdown triple-backtick fences.
func StripCodeFences(s string) string {
t := strings.TrimSpace(s)
if t == "" {
return t
}
lines := strings.Split(t, "\n")
start := 0
for start < len(lines) && strings.TrimSpace(lines[start]) == "" {
start++
}
end := len(lines) - 1
for end >= 0 && strings.TrimSpace(lines[end]) == "" {
end--
}
if start >= len(lines) || end < 0 || start > end {
return t
}
first := strings.TrimSpace(lines[start])
last := strings.TrimSpace(lines[end])
if strings.HasPrefix(first, "```") && last == "```" && end > start {
inner := strings.Join(lines[start+1:end], "\n")
return inner
}
return t
}
// InstructionFromSelection extracts the first inline instruction and returns
// (instruction, cleanedSelection). It detects markers on the earliest position
// per line in precedence: strict ;text;, /* */, <!-- -->, //, #, --.
func InstructionFromSelection(sel string) (string, string) {
lines := strings.Split(sel, "\n")
for idx, line := range lines {
if instr, cleaned, ok := FindFirstInstructionInLine(line); ok && strings.TrimSpace(instr) != "" {
lines[idx] = cleaned
return instr, strings.Join(lines, "\n")
}
}
return "", sel
}
// FindFirstInstructionInLine returns (instruction, cleaned, ok) for a single line.
func FindFirstInstructionInLine(line string) (instr, cleaned string, ok bool) {
type cand struct {
start, end int
text string
}
cands := []cand{}
if t, l, r, ok := FindStrictInlineTag(line); ok {
cands = append(cands, cand{start: l, end: r, text: t})
}
if i := strings.Index(line, "/*"); i >= 0 {
if j := strings.Index(line[i+2:], "*/"); j >= 0 {
start := i
end := i + 2 + j + 2
text := strings.TrimSpace(line[i+2 : i+2+j])
cands = append(cands, cand{start: start, end: end, text: text})
}
}
if i := strings.Index(line, "<!--"); i >= 0 {
if j := strings.Index(line[i+4:], "-->"); j >= 0 {
start := i
end := i + 4 + j + 3
text := strings.TrimSpace(line[i+4 : i+4+j])
cands = append(cands, cand{start: start, end: end, text: text})
}
}
if i := strings.Index(line, "//"); i >= 0 {
cands = append(cands, cand{start: i, end: len(line), text: strings.TrimSpace(line[i+2:])})
}
if i := strings.Index(line, "#"); i >= 0 {
cands = append(cands, cand{start: i, end: len(line), text: strings.TrimSpace(line[i+1:])})
}
if i := strings.Index(line, "--"); i >= 0 {
cands = append(cands, cand{start: i, end: len(line), text: strings.TrimSpace(line[i+2:])})
}
if len(cands) == 0 {
return "", line, false
}
best := cands[0]
for _, c := range cands[1:] {
if c.start >= 0 && (best.start < 0 || c.start < best.start) {
best = c
}
}
cleaned = strings.TrimRight(line[:best.start]+line[best.end:], " \t")
return best.text, cleaned, true
}
// FindStrictInlineTag finds ;text; with no spaces after/before semicolons.
func FindStrictInlineTag(line string) (text string, left, right int, ok bool) {
for i := 0; i < len(line); i++ {
if line[i] != ';' {
continue
}
if i+1 < len(line) && line[i+1] == ' ' {
continue
}
for j := i + 1; j < len(line); j++ {
if line[j] == ';' {
if j-1 >= 0 && line[j-1] == ' ' {
continue
}
inner := strings.TrimSpace(line[i+1 : j])
if inner != "" {
return inner, i, j + 1, true
}
}
}
}
return "", -1, -1, false
}
|