🐛Fixed <br> tag from duplicating in AMP transform (#9502)

closes #9499 

- added `br` to self closing tags option for `sanitize-html` when cleaning the ampified HTML
This commit is contained in:
CriticalRespawn 2018-03-16 02:39:29 +00:00 committed by Aileen Nowak
parent 27f12e3d51
commit 25b94bba75

View File

@ -194,7 +194,7 @@ function ampContent() {
cleanHTML = sanitizeHtml(ampHTML, {
allowedTags: allowedAMPTags,
allowedAttributes: allowedAMPAttributes,
selfClosing: ['source', 'track']
selfClosing: ['source', 'track', 'br']
});
return new SafeString(cleanHTML);