diff --git a/openlp/core/lib/displaytags.py b/openlp/core/lib/displaytags.py index 95ce13bda..addab4d75 100644 --- a/openlp/core/lib/displaytags.py +++ b/openlp/core/lib/displaytags.py @@ -111,7 +111,7 @@ class DisplayTags(object): u'start html': u'', u'end tag': u'{/u}', u'end html': u'', u'protected': True}) base_tags.append({u'desc': translate('OpenLP.DisplayTags', 'Break'), - u'start tag': u'{br}', u'start html': u'
', u'end tag': u'', + u'start tag': u'{br}', u'start html': u'
', u'end tag': u'', u'end html': u'', u'protected': True}) DisplayTags.add_html_tags(base_tags) diff --git a/openlp/core/lib/renderer.py b/openlp/core/lib/renderer.py index 2b20900a9..4f4a3e4c9 100644 --- a/openlp/core/lib/renderer.py +++ b/openlp/core/lib/renderer.py @@ -241,7 +241,7 @@ class Renderer(object): new_pages = [] for page in pages: while page.endswith(u'
'): - page = page[:-4] + page = page[:-6] new_pages.append(page) return new_pages @@ -357,8 +357,8 @@ class Renderer(object): The words to be fitted on the slide split into lines. ``line_end`` - The text added after each line. Either ``u' '`` or ``u'
``. This - is needed for bibles. + The text added after each line. Either ``u' '`` or ``u'
``. + This is needed for bibles. """ log.debug(u'_paginate_slide_words - Start') formatted = []