From 1030c5c12b0e196d6044ac01e2cef902cf11db89 Mon Sep 17 00:00:00 2001 From: Alexandre Dupas Date: Thu, 13 Aug 2009 17:17:47 +0200 Subject: [PATCH] Fix title parsing in make-html to ignore other information than title. --- make-html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/make-html b/make-html index bc4c1b58..f21775d4 100755 --- a/make-html +++ b/make-html @@ -92,7 +92,7 @@ my $title; while( ) { - if( $_ =~ /\\beginsong{(.*)}\[.*by=(.*)\]/ ) + if( $_ =~ /\\beginsong{(.*)}\[.*by=(.*),.*\]/ ) { $author = latex2utf8 $2; $title = latex2utf8 $1;