Skip to content

Commit

Permalink
Removed the HTML entity encoding
Browse files Browse the repository at this point in the history
  • Loading branch information
roelofjan-elsinga committed Mar 4, 2020
1 parent 0100935 commit 55c4d88
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion composer.json
Expand Up @@ -48,7 +48,7 @@
"require": {
"ext-mbstring": "*",
"roelofjan-elsinga/aloia-cms": "^1.0",
"roelofjan-elsinga/atom-feed-generator": "^0.2.2",
"roelofjan-elsinga/atom-feed-generator": "^0.2.3",
"roelofjan-elsinga/sitemap-generator": "~0.3"
},
"require-dev": {
Expand Down
2 changes: 1 addition & 1 deletion src/Transformers/ArticleFeedItem.php
Expand Up @@ -81,7 +81,7 @@ public function content(): string
*/
public function summary(): string
{
return htmlentities($this->article->description());
return $this->article->description();
}

/**
Expand Down

0 comments on commit 55c4d88

Please sign in to comment.