Merge "rest-api-templates/asterisk_processor - replace http line breaks with line feed"

changes/49/11049/1
Joshua C. Colp 6 years ago committed by Gerrit Code Review
commit f48a9c2520

@ -46,6 +46,8 @@ def wikify(str):
@param str: String to escape
"""
# Replace all line breaks with line feeds
str = re.sub(r'<br\s*/?>', '\n', str)
return re.sub(r'([{}\[\]])', r'\\\1', str)

Loading…
Cancel
Save