From 75fec5d8e5b57c75274ce82c053358c325fcb283 Mon Sep 17 00:00:00 2001 From: David Thompson Date: Thu, 8 Jan 2015 09:23:26 -0500 Subject: [PATCH] Add blank line after WebVTT signature. * srt2vtt: Add blank line between signature and first subtitle. --- srt2vtt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srt2vtt b/srt2vtt index 2c0e826..cbb4c6d 100755 --- a/srt2vtt +++ b/srt2vtt @@ -89,7 +89,7 @@ (newline port)))) (define (write-web-vtts subtitles port) - (display "WEBVTT\n" port) + (format port "WEBVTT~%~%") (for-each (cut write-web-vtt <> port) subtitles)) (define (convert input-port output-port) -- 2.31.1