Fix highlighting for unrecognized formats
gitile/code.scm
29 | 29 | (let ((extension (car (reverse (string-split (basename path) #\.))))) | |
30 | 30 | (match extension | |
31 | 31 | ("scm" (highlight lex-scheme content)) | |
32 | - | (_ content)))) | |
32 | + | (_ (list content))))) | |
33 | 33 | ||
34 | 34 | (define (split-lines content) | |
35 | 35 | (let loop ((content content) (result '()) (line '())) |