adds check for | character
This commit is contained in:
@ -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
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user