| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 45 | protected function processMarkdown($markdown) |
||
| 46 | { |
||
| 47 | // Remove Google link tracking |
||
| 48 | $markdown = preg_replace_callback('/\(https?:\/\/www\.google\.com\/url\?q=(?<url>[^&]+)[^\)]+\)/', function ($matches) { |
||
| 49 | return '('.urldecode($matches['url']).')'; |
||
| 50 | }, $markdown); |
||
| 51 | return $markdown; |
||
| 52 | } |
||
| 53 | } |
||
| 54 |