From e717e4597a9d4f28c65cbdfc89561e1e43f9dc1a Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Mon, 9 Sep 2019 11:18:33 +0300 Subject: [PATCH] summary.js: use double quotes in the `a` tag. --- scripts/helpers/summary.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/helpers/summary.js b/scripts/helpers/summary.js index 811f1975e9a53..d9efe092c2903 100644 --- a/scripts/helpers/summary.js +++ b/scripts/helpers/summary.js @@ -30,7 +30,7 @@ module.exports = (contents, locale, path) => { .not((i, elem) => IGNORE_SELECTORS.some((selector) => $(elem).is(selector))) .each((i, elem) => { if (summary.length > SUMMARY_MAX_LENGTH) { - summary += `

Read more...

` + summary += `

Read more...

` return false }