Display line breaks in shownotes correctly

This commit is contained in:
Martin Fietz 2015-08-15 15:18:49 +02:00
parent 928c438268
commit cf1259e0b3
1 changed files with 4 additions and 1 deletions

View File

@ -87,6 +87,9 @@ public class Timeline {
return "";
}
// ASCII line breaks to HTML line breaks
shownotes = shownotes.replace("\n", "<br />");
Document document = Jsoup.parse(shownotes);
// apply style
@ -100,7 +103,7 @@ public class Timeline {
if (BuildConfig.DEBUG)
Log.d(TAG, "Recognized " + elementsWithTimeCodes.size() + " timecodes");
for (Element element : elementsWithTimeCodes) {
Matcher matcherLong = TIMECODE_REGEX.matcher(element.text());
Matcher matcherLong = TIMECODE_REGEX.matcher(element.html());
StringBuffer buffer = new StringBuffer();
while (matcherLong.find()) {
String h = matcherLong.group(1);