diff options
| author | Jan Tuomi <jans.tuomi@gmail.com> | 2024-03-28 15:44:58 +0200 |
|---|---|---|
| committer | Jan Tuomi <jans.tuomi@gmail.com> | 2024-03-28 15:44:58 +0200 |
| commit | 24d216d2553f5955b919538c049b5ff244a28f30 (patch) | |
| tree | c5a8272e3e07420a85b23830bdeb7eee67660ceb | |
| parent | 46508708284ddd8a8e1f2a707752042d3084c1a3 (diff) | |
Remove debug prints, improve list style
| -rw-r--r-- | feed.scm | 4 | ||||
| -rw-r--r-- | static/style.css | 8 |
2 files changed, 8 insertions, 4 deletions
@@ -66,15 +66,11 @@ (define (generate-archive-index src-dir archive-subdir) (define archive-dir (make-pathname src-dir archive-subdir)) - (printf "debug archive-dir: ~A~%" archive-dir) - (printf "debug glob: ~A~%" (glob (format "~A/*" archive-dir))) (define paths (pipe (glob (format "~A/*" archive-dir)) (@ filter (@ irregex-search "\\.md$")))) (define fm (map (λ (path) (cons path (read-md-frontmatter path))) paths)) (for-each (@ printf "~A~%") fm) - (printf "debug fm: ~A~%" fm) - (printf "debug list?: ~A~%" (list? fm)) ;; newest first (define (less? a b) (string>? (assocdr 'date (cdr a)) (assocdr 'date (cdr b)))) diff --git a/static/style.css b/static/style.css index 729121b..2e5d84d 100644 --- a/static/style.css +++ b/static/style.css @@ -171,3 +171,11 @@ hr { small { color: var(--blockquote-color); } + +ul, ol { + margin-left: 10px; +} + +li::marker { + color: var(--link-color); +} |
