diff options
author | David Thompson <davet@gnu.org> | 2015-01-08 09:23:26 -0500 |
---|---|---|
committer | David Thompson <davet@gnu.org> | 2015-01-08 09:23:26 -0500 |
commit | 75fec5d8e5b57c75274ce82c053358c325fcb283 (patch) | |
tree | 6431bab7ca0a9552697ff21c1197cc4f4b750728 | |
parent | 4482f8778584d0ca008ba02bb95794077141f155 (diff) |
Add blank line after WebVTT signature.
* srt2vtt: Add blank line between signature and first subtitle.
-rwxr-xr-x | srt2vtt | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) |