Fix highlighting for unrecognized formats

Julien LepillerMon Mar 08 02:48:18+0100 2021

7f72e68

Fix highlighting for unrecognized formats

gitile/code.scm

2929
  (let ((extension (car (reverse (string-split (basename path) #\.)))))
3030
    (match extension
3131
      ("scm" (highlight lex-scheme content))
32-
      (_ content))))
32+
      (_ (list content)))))
3333
3434
(define (split-lines content)
3535
  (let loop ((content content) (result '()) (line '()))