diff --git a/core/frontend/meta/excerpt.js b/core/frontend/meta/excerpt.js index eb4f6c2043..f194ed3e85 100644 --- a/core/frontend/meta/excerpt.js +++ b/core/frontend/meta/excerpt.js @@ -5,6 +5,10 @@ function getExcerpt(html, truncateOptions) { // Strip inline and bottom footnotes var excerpt = html.replace(/.*?<\/a>/gi, ''); excerpt = excerpt.replace(/
    .*?<\/ol><\/div>/, ''); + + // Make sure to have space between paragraphs and new lines + excerpt = excerpt.replace(/(<\/p>|
    )/gi, ' '); + // Strip other html excerpt = excerpt.replace(/<\/?[^>]+>/gi, ''); excerpt = excerpt.replace(/(\r\n|\n|\r)+/gm, ' '); diff --git a/core/test/unit/data/meta/excerpt_spec.js b/core/test/unit/data/meta/excerpt_spec.js index 088865b1ed..cafe4e2d08 100644 --- a/core/test/unit/data/meta/excerpt_spec.js +++ b/core/test/unit/data/meta/excerpt_spec.js @@ -5,9 +5,9 @@ describe('getExcerpt', function () { it('should return html excerpt with no html', function () { var html = '

    There are
    10
    types
    of people in the world:' + 'c those who ' + - 'understand trinary

    , those who don\'t
    and' + + 'understand trinary,

    those who don\'t
    and' + '< test > those<<< test >>> who mistake it <for> binary.', - expected = 'There are 10 types of people in the world: those who understand trinary, those who ' + + expected = 'There are 10 types of people in the world: those who understand trinary, those who ' + 'don\'t and those>> who mistake it <for> binary.'; getExcerpt(html, {}).should.equal(expected); @@ -61,9 +61,9 @@ describe('getExcerpt', function () { function () { var html = '

    There are
    10
    types
    of people in the world:' + 'c those who ' + - 'understand trinary

    , those who don\'t
    and' + + 'understand trinary,

    those who don\'t
    and' + '< test > those<<< test >>> who mistake it <for> binary.', - expected = 'There are 10 types of people in the world: those who understand trinary, those who ' + + expected = 'There are 10 types of people in the world: those who understand trinary, those who ' + 'don\'t and those>> who mistake it <for> binary.'; getExcerpt(html).should.equal(expected); diff --git a/core/test/unit/helpers/excerpt_spec.js b/core/test/unit/helpers/excerpt_spec.js index ef3eddbb11..6e9f47968a 100644 --- a/core/test/unit/helpers/excerpt_spec.js +++ b/core/test/unit/helpers/excerpt_spec.js @@ -29,9 +29,9 @@ describe('{{excerpt}} Helper', function () { it('does not output HTML', function () { var html = '

    There are
    10
    types
    of people in the world:' + 'c those who ' + - 'understand trinary

    , those who don\'t
    and' + + 'understand trinary,

    those who don\'t
    and' + '< test > those<<< test >>> who mistake it <for> binary.', - expected = 'There are 10 types of people in the world: those who understand trinary, those who ' + + expected = 'There are 10 types of people in the world: those who understand trinary, those who ' + 'don\'t and those>> who mistake it <for> binary.', rendered = helpers.excerpt.call({ html: html, @@ -182,4 +182,54 @@ describe('{{excerpt}} Helper', function () { should.exist(rendered); rendered.string.should.equal(expected); }); + + it('puts additional space after closing paragraph', function () { + var html = '

    Testing.

    Space before this text.

    And this as well!

    ', + expected = 'Testing. Space before this text. And this as well!', + rendered = ( + helpers.excerpt.call( + { + html: html, + custom_excerpt: '' + } + ) + ); + + should.exist(rendered); + rendered.string.should.equal(expected); + }); + + it('puts additional space instead of
    tag', function () { + var html = '

    Testing.
    Space before this text.
    And this as well!

    ', + expected = 'Testing. Space before this text. And this as well!', + rendered = ( + helpers.excerpt.call( + { + html: html, + custom_excerpt: '' + } + ) + ); + + should.exist(rendered); + rendered.string.should.equal(expected); + }); + + it('puts additional space between paragraph in markup generated by Ghost', function () { + var html = '

    put space in excerpt.

    before this paragraph.

    ' + + '
    ' + + '

    and skip the image.

    ', + expected = 'put space in excerpt. before this paragraph. and skip the image.', + rendered = ( + helpers.excerpt.call( + { + html: html, + custom_excerpt: '' + } + ) + ); + + should.exist(rendered); + rendered.string.should.equal(expected); + }); });