mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-10 23:36:14 -05:00
🐛 Fixed paid email preview stopped working in emails (#15356)
fixes https://github.com/TryGhost/Team/issues/1870 Disables email sanitization that was enabled earlier because this bug is more important and urgent. The recently introduced email sanitzation removes HTML comments from the post html. - This breaks the email paid preview, because it depends on the `<!--members-only-->` comment. - Breaks the Outlook comments `<!--[if !mso !vml]-->` This commit reverts this change.
This commit is contained in:
parent
7650ecafeb
commit
999b111fce
2 changed files with 6 additions and 3 deletions
|
@ -28,9 +28,10 @@ const sanitizeKeys = (obj, keys) => {
|
|||
module.exports = ({post, site, newsletter, templateSettings}) => {
|
||||
const date = new Date();
|
||||
const hasFeatureImageCaption = templateSettings.showFeatureImage && post.feature_image && post.feature_image_caption;
|
||||
const cleanPost = sanitizeKeys(post, ['title', 'excerpt', 'html', 'feature_image_alt', 'feature_image_caption']);
|
||||
const cleanPost = sanitizeKeys(post, ['title', 'excerpt', 'authors', 'feature_image_alt', 'feature_image_caption']);
|
||||
const cleanSite = sanitizeKeys(site, ['title']);
|
||||
const cleanNewsletter = sanitizeKeys(newsletter, ['name']);
|
||||
|
||||
return `<!doctype html>
|
||||
<html>
|
||||
|
||||
|
|
|
@ -120,9 +120,11 @@ describe('Mega template', function () {
|
|||
});
|
||||
|
||||
it('Correctly escapes the contents', function () {
|
||||
// TODO: check html escaping based on mobiledoc instead of invalid html: https://github.com/TryGhost/Team/issues/1871
|
||||
|
||||
const post = {
|
||||
title: 'I <3 Posts',
|
||||
html: '<div class="post-content-html">I am <100 years old</div>',
|
||||
html: '<div class="post-content-html">I am <100 years old</div>',
|
||||
feature_image: 'https://example.com/image.jpg',
|
||||
feature_image_alt: 'I <3 alt text',
|
||||
feature_image_caption: 'I <3 images'
|
||||
|
@ -196,7 +198,7 @@ describe('Mega template', function () {
|
|||
|
||||
should(html).containEql('class="custom"');
|
||||
// note that some part of rendering/sanitisation removes spaces from the style description
|
||||
should(html).containEql('style="font-weight:900;display:flex"');
|
||||
should(html).containEql('style="font-weight: 900; display: flex;"');
|
||||
});
|
||||
|
||||
it('Uses the post title as a fallback for the excerpt', function () {
|
||||
|
|
Loading…
Add table
Reference in a new issue