adds check for | character

This commit is contained in:
2023-12-09 15:09:38 -06:00
parent e96741c2a0
commit 03b1cc13ee
2 changed files with 3 additions and 3 deletions

View File

@ -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
}