adds check for | character
This commit is contained in:
parent
e96741c2a0
commit
03b1cc13ee
@ -21,7 +21,7 @@ func parseComplex(data []byte) []string {
|
|||||||
line := scanner.Text()
|
line := scanner.Text()
|
||||||
|
|
||||||
// skip lines where the first non-whitespace character is '#' or '//'
|
// skip lines where the first non-whitespace character is '#' or '//'
|
||||||
if regexp.MustCompile(`^(\s+)?(#|\/\/)`).MatchString(line) {
|
if regexp.MustCompile(`^(\s+)?(#|\/\/|\|)`).MatchString(line) {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -20,8 +20,8 @@ func parseSimple(data []byte) []string {
|
|||||||
for scanner.Scan() {
|
for scanner.Scan() {
|
||||||
line := scanner.Text()
|
line := scanner.Text()
|
||||||
|
|
||||||
// skip lines where the first non-whitespace character is '#' or '//'
|
// skip lines where the first non-whitespace character is '#' or '//' or '|'
|
||||||
if regexp.MustCompile(`^(\s+)?(#|\/\/)`).MatchString(line) {
|
if regexp.MustCompile(`^(\s+)?(#|\/\/|\|)`).MatchString(line) {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user