Adds Uppercase Tag #509

This commit is contained in:
Tim 2022-02-10 15:26:42 +00:00
parent d9eec25960
commit 87b48b059d
No known key found for this signature in database
GPG Key ID: E95CE08DB3F50537
1 changed files with 6 additions and 0 deletions

View File

@ -143,6 +143,12 @@ class FormattingTags(object):
'start html': '<span style="text-decoration: underline;">',
'end tag': '{/u}', 'end html': '</span>', 'protected': True,
'temporary': False
}, {
'desc': translate('OpenLP.FormattingTags', 'UpperCase'),
'start tag': '{uc}',
'start html': '<span style="text-transform: uppercase;">',
'end tag': '{/uc}', 'end html': '</span>', 'protected': True,
'temporary': False
}, {
'desc': translate('OpenLP.FormattingTags', 'Break'),
'start tag': '{br}', 'start html': '<br>', 'end tag': '',