PLT-6692 Removed wbr tags from single line markdown (#6539)

Этот коммит содержится в:
Harrison Healey
2017-06-01 17:20:04 -04:00
коммит произвёл Joram Wilander
родитель 8ad057c2c7
Коммит b46320a089

Просмотреть файл

@@ -52,7 +52,10 @@ export function formatText(text, inputOptions) {
output = replaceNewlines(output);
}
output = insertLongLinkWbr(output);
// Add <wbr /> tags to recommend line breaking on slashes within URLs
if (!options.singleline) {
output = insertLongLinkWbr(output);
}
return output;
}