Skip to content

Commit

Permalink
No commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
breck7 committed Oct 2, 2024
1 parent db2b771 commit 5dcc935
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "scroll-cli",
"version": "136.11.0",
"version": "136.11.1",
"description": "A language for scientists of all ages. A curated collection of tools for refining and sharing thoughts.",
"main": "scroll.js",
"engines": {
Expand Down
3 changes: 3 additions & 0 deletions releaseNotes.scroll
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ ciBadges.scroll
br
thinColumns

πŸ“¦ 136.11.1 10/02/2024
πŸŽ‰ description escape fix

πŸ“¦ 136.11.0 10/02/2024
πŸŽ‰ added `printShortSnippetsParser`

Expand Down
2 changes: 1 addition & 1 deletion scroll.js
Original file line number Diff line number Diff line change
Expand Up @@ -640,7 +640,7 @@ parsers/errors.parsers`

get generatedDescription() {
const firstParagraph = this.scrollProgram.find(particle => particle.isArticleContent)
return firstParagraph ? firstParagraph.originalText.substr(0, 100) : ""
return firstParagraph ? firstParagraph.originalText.substr(0, 100).replace(/[&"<>']/g, "") : ""
}

get title() {
Expand Down

0 comments on commit 5dcc935

Please sign in to comment.