diff --git a/src/Core/Post/CommentPost.php b/src/Core/Post/CommentPost.php index 492088552..3db0c7555 100755 --- a/src/Core/Post/CommentPost.php +++ b/src/Core/Post/CommentPost.php @@ -153,6 +153,16 @@ class CommentPost extends Post $this->attributes['content'] = $value ? static::$formatter->parse($value, $this) : null; } + /** + * Set the parsed/raw content. + * + * @param string $value + */ + public function setParsedContentAttribute($value) + { + $this->attributes['content'] = $value; + } + /** * Get the content rendered as HTML. *