mirror of
https://github.com/CJackHwang/ds2api.git
synced 2026-05-07 09:55:29 +08:00
32 lines
708 B
Go
32 lines
708 B
Go
package shared
|
|
|
|
import (
|
|
"fmt"
|
|
"regexp"
|
|
"strconv"
|
|
"strings"
|
|
)
|
|
|
|
var citationMarkerPattern = regexp.MustCompile(`(?i)\[citation:\s*(\d+)\]`)
|
|
|
|
func ReplaceCitationMarkersWithLinks(text string, links map[int]string) string {
|
|
if strings.TrimSpace(text) == "" || len(links) == 0 {
|
|
return text
|
|
}
|
|
return citationMarkerPattern.ReplaceAllStringFunc(text, func(match string) string {
|
|
sub := citationMarkerPattern.FindStringSubmatch(match)
|
|
if len(sub) < 2 {
|
|
return match
|
|
}
|
|
idx, err := strconv.Atoi(strings.TrimSpace(sub[1]))
|
|
if err != nil || idx <= 0 {
|
|
return match
|
|
}
|
|
url := strings.TrimSpace(links[idx])
|
|
if url == "" {
|
|
return match
|
|
}
|
|
return fmt.Sprintf("[%d](%s)", idx, url)
|
|
})
|
|
}
|