adds check for | character

This commit is contained in:
Hyatt 2023-12-09 15:09:38 -06:00
parent e96741c2a0
commit 03b1cc13ee
Signed by: nhyatt
GPG Key ID: C50D0BBB5BC40BEA
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
}

View File

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