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

This commit is contained in:
Joshua C. Colp
2019-02-26 09:28:05 -06:00
committed by Gerrit Code Review

View File

@@ -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)