Remove debugging

This commit is contained in:
Ray Miller 2025-01-31 17:39:32 +00:00
parent cb177aa43f
commit e54d8f16bc

View file

@ -48,7 +48,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
(define (parse-srcset s) (define (parse-srcset s)
"Parse out the list of URLs from an image srcset, discarding whitespace and the "Parse out the list of URLs from an image srcset, discarding whitespace and the
width/density descriptor." width/density descriptor."
(pk s)
(map (compose first (cut string-split <> #\space)) (map (compose first (cut string-split <> #\space))
(map string-trim-both (string-split s #\,)))) (map string-trim-both (string-split s #\,))))