songs2slides

A tool that automatically finds song lyrics and creates lyric slideshows
git clone https://git.ashermorgan.net/songs2slides/
Log | Files | Refs | README

commit b9b5f24771818f6f988a3609288ee3670904dce7
parent b7848e91a2694324d5c199a3655066208045d702
Author: AsherMorgan <59518073+AsherMorgan@users.noreply.github.com>
Date:   Mon, 10 Aug 2020 17:29:39 -0700

Improve line parsing in web app.

Diffstat:
MSongs2Slides/static/home.js | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Songs2Slides/static/home.js b/Songs2Slides/static/home.js @@ -101,7 +101,7 @@ async function ReviewLyrics() { // Gets the powerpoint by submitting lyrics async function SubmitLyrics() { // Get lyrics - let lyrics = document.getElementById("rawLyrics").value.split('\n\n'); + let lyrics = document.getElementById("rawLyrics").value.split(/\n *\n/); // Set hidden form values document.getElementById("pptxSettingsField").value = localStorage.getItem("settings");