| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 18 | public function register(): void |
||
| 19 | { |
||
| 20 | $this->app->singleton('markdown', function () { |
||
| 21 | $environment = new Environment([ |
||
| 22 | 'allow_unsafe_links' => false, |
||
| 23 | 'html_input' => 'strip' |
||
| 24 | ]); |
||
| 25 | |||
| 26 | $environment->addExtension(new CommonMarkCoreExtension); |
||
| 27 | |||
| 28 | return new MarkdownConverter($environment); |
||
| 29 | }); |
||
| 40 |