Skip to content

Commit

Permalink
fix(extension): fix filter for Markdown
Browse files Browse the repository at this point in the history
  • Loading branch information
Awilum committed Jan 1, 2021
1 parent 894fe65 commit 613143a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion twig/FiltersTwigExtension.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,6 @@ public function shortcode($value) : string

public function markdown($value) : string
{
return !empty($value) ? flextype('parsers')->markdown()->process($value) : '';
return !empty($value) ? flextype('parsers')->markdown()->parse($value) : '';
}
}

0 comments on commit 613143a

Please sign in to comment.