-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathstring_helper.go
36 lines (32 loc) · 883 Bytes
/
string_helper.go
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
package json_markd
import (
"errors"
"strings"
)
func removeTabsFromLines(line string, tabSpacesValue int) (int, string) {
count := 0
for _, character := range line {
if character == ' ' {
count++
} else {
break
}
}
count = count / tabSpacesValue
lineWithoutTabs := strings.Trim(line, " ")
return count, lineWithoutTabs
}
func trimString(input string, sep string) string {
return strings.Trim(input, sep)
}
func parseLine(line string) (string, string, error) {
line = strings.TrimLeft(line, "-")
line = trimString(line, " ")
keyValueList := strings.Split(line, ":")
if len(keyValueList) < 2 {
Log.Error(".errors.invalid_markdown_list_format")
return "", "", errors.New(".errors.invalid_markdown_list_format")
}
// return error if len(keyValueList) < 2
return "\"" + trimString(keyValueList[0], " ") + "\"", trimString(keyValueList[1], " "), nil
}