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()
|
||||
|
||||
// skip lines where the first non-whitespace character is '#' or '//'
|
||||
if regexp.MustCompile(`^(\s+)?(#|\/\/)`).MatchString(line) {
|
||||
if regexp.MustCompile(`^(\s+)?(#|\/\/|\|)`).MatchString(line) {
|
||||
continue
|
||||
}
|
||||
|
||||
|
@ -20,8 +20,8 @@ func parseSimple(data []byte) []string {
|
||||
for scanner.Scan() {
|
||||
line := scanner.Text()
|
||||
|
||||
// skip lines where the first non-whitespace character is '#' or '//'
|
||||
if regexp.MustCompile(`^(\s+)?(#|\/\/)`).MatchString(line) {
|
||||
// skip lines where the first non-whitespace character is '#' or '//' or '|'
|
||||
if regexp.MustCompile(`^(\s+)?(#|\/\/|\|)`).MatchString(line) {
|
||||
continue
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user