From f68eaea7954d667c268bbdf9555cebfea6d7462c Mon Sep 17 00:00:00 2001 From: pho4cexa Date: Thu, 23 Feb 2023 23:36:08 -0800 Subject: [PATCH] forgot this fix --- repo2html.scm | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/repo2html.scm b/repo2html.scm index 385359d..4bfadeb 100755 --- a/repo2html.scm +++ b/repo2html.scm @@ -151,17 +151,17 @@ (-> source-file git-file->lines lines->string - markdown->sxml)) - ((.jpg .jpeg .png .gif .webp .webm .apng .avif .svgz .ico) - (image-link)) - ((.svg) - (list (image-link) (plaintext))) - ((.gz .pack .idx) - (binary)) - (else - (if (git-file-is-text? source-file) - (numbered-sxml) - (binary)))))) + markdown->sxml))) + ((.jpg .jpeg .png .gif .webp .webm .apng .avif .svgz .ico) + (image-link)) + ((.svg) + (list (image-link) (plaintext))) + ((.gz .pack .idx) + (binary)) + (else + (if (git-file-is-text? source-file) + (numbered-sxml) + (binary))))) (define (filelist->sxml source-files-list relative-root) `((h1 "Files")