Some checks failed
Pipeline: Test, Lint, Build / Get version info (push) Has been cancelled
Pipeline: Test, Lint, Build / Lint Go code (push) Has been cancelled
Pipeline: Test, Lint, Build / Test Go code (push) Has been cancelled
Pipeline: Test, Lint, Build / Test JS code (push) Has been cancelled
Pipeline: Test, Lint, Build / Lint i18n files (push) Has been cancelled
Pipeline: Test, Lint, Build / Check Docker configuration (push) Has been cancelled
Pipeline: Test, Lint, Build / Build (darwin/amd64) (push) Has been cancelled
Pipeline: Test, Lint, Build / Build (darwin/arm64) (push) Has been cancelled
Pipeline: Test, Lint, Build / Build (linux/386) (push) Has been cancelled
Pipeline: Test, Lint, Build / Build (linux/amd64) (push) Has been cancelled
Pipeline: Test, Lint, Build / Build (linux/arm/v5) (push) Has been cancelled
Pipeline: Test, Lint, Build / Build (linux/arm/v6) (push) Has been cancelled
Pipeline: Test, Lint, Build / Build (linux/arm/v7) (push) Has been cancelled
Pipeline: Test, Lint, Build / Build (linux/arm64) (push) Has been cancelled
Pipeline: Test, Lint, Build / Build (windows/386) (push) Has been cancelled
Pipeline: Test, Lint, Build / Build (windows/amd64) (push) Has been cancelled
Pipeline: Test, Lint, Build / Push to GHCR (push) Has been cancelled
Pipeline: Test, Lint, Build / Push to Docker Hub (push) Has been cancelled
Pipeline: Test, Lint, Build / Cleanup digest artifacts (push) Has been cancelled
Pipeline: Test, Lint, Build / Build Windows installers (push) Has been cancelled
Pipeline: Test, Lint, Build / Package/Release (push) Has been cancelled
Pipeline: Test, Lint, Build / Upload Linux PKG (push) Has been cancelled
Close stale issues and PRs / stale (push) Has been cancelled
POEditor import / update-translations (push) Has been cancelled
39 lines
1.2 KiB
Go
39 lines
1.2 KiB
Go
package utils
|
|
|
|
import (
|
|
"regexp"
|
|
"strings"
|
|
)
|
|
|
|
type IndexGroups map[string]string
|
|
|
|
// ParseIndexGroups
|
|
// The specification is a space-separated list of index entries. Normally, each entry is just a single character,
|
|
// but you may also specify multiple characters. For instance, the entry "The" will link to all files and
|
|
// folders starting with "The".
|
|
//
|
|
// You may also create an entry using a group of index characters in parentheses. For instance, the entry
|
|
// "A-E(ABCDE)" will display as "A-E" and link to all files and folders starting with either
|
|
// A, B, C, D or E. This may be useful for grouping less-frequently used characters (such and X, Y and Z), or
|
|
// for grouping accented characters (such as A, \u00C0 and \u00C1)
|
|
//
|
|
// Files and folders that are not covered by an index entry will be placed under the index entry "#".
|
|
|
|
var indexGroupsRx = regexp.MustCompile(`(.+)\((.+)\)`)
|
|
|
|
func ParseIndexGroups(spec string) IndexGroups {
|
|
parsed := make(IndexGroups)
|
|
split := strings.Split(spec, " ")
|
|
for _, g := range split {
|
|
sub := indexGroupsRx.FindStringSubmatch(g)
|
|
if len(sub) > 0 {
|
|
for _, c := range sub[2] {
|
|
parsed[string(c)] = sub[1]
|
|
}
|
|
} else {
|
|
parsed[g] = g
|
|
}
|
|
}
|
|
return parsed
|
|
}
|