From 16c3785b52cf7fc50ead4ba01f63a4d40f28d80a Mon Sep 17 00:00:00 2001
From: Nazar Gargol
` tag they are rendered as single space.
---
core/frontend/meta/excerpt.js | 4 ++
core/test/unit/data/meta/excerpt_spec.js | 8 ++--
core/test/unit/helpers/excerpt_spec.js | 54 +++++++++++++++++++++++-
3 files changed, 60 insertions(+), 6 deletions(-)
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(/ There are There are There are Testing. Space before this text. And this as well! Testing. put space in excerpt. before this paragraph. and skip the image..*?<\/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 = '
10
types
of people in the world:' +
'
those who
' +
- 'understand trinary
10
types
of people in the world:' +
'
those who
' +
- 'understand trinary
10
types
of people in the world:' +
'
those who
' +
- 'understand trinary
tag', function () {
+ var html = '
Space before this text.
And this as well!