Skip to content

Commit

Permalink
Escaping html instead of stripping
Browse files Browse the repository at this point in the history
  • Loading branch information
Miloslav Nenadal committed Oct 5, 2020
1 parent 5c8f32e commit eebff67
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ImaticFormatting.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ public function register(): void
{
$this->name = 'Imatic formatting';
$this->description = 'Formatting';
$this->version = '0.0.1';
$this->version = '0.0.2';
$this->requires = [
'MantisCore' => '2.0.0',
];
Expand All @@ -31,7 +31,7 @@ private function getConverter(): GithubFlavoredMarkdownConverter
static $converter = null;
if ($converter === null) {
$converter = new GithubFlavoredMarkdownConverter([
'html_input' => 'strip',
'html_input' => 'escape',
'allow_unsafe_links' => false,
]);
}
Expand Down

0 comments on commit eebff67

Please sign in to comment.