This commit is contained in:
Deluan 2016-03-02 13:18:39 -05:00
parent 9d41f5a39f
commit 4843ccb46c
42 changed files with 150 additions and 160 deletions

View file

@ -1,20 +1,20 @@
// Let's you specify how the index should look like.
//
// Let's you specify how the index should look like.
//
// 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".
//
// folders starting with "The".
//
// You may also create an entry using a group of index characters in paranthesis. 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)
//
// 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 "#".
package utils
import (
"strings"
"regexp"
"strings"
)
type IndexGroups map[string]string
@ -37,4 +37,4 @@ func ParseIndexGroups(spec string) IndexGroups {
}
}
return parsed
}
}