| Conditions | 2 | 
| Paths | 2 | 
| Total Lines | 7 | 
| Code Lines | 4 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php | ||
| 21 | protected function applyRendering() | ||
| 22 |     { | ||
| 23 | parent::applyRendering(); // always apply twig rendering before markdown, avoid some errors | ||
| 24 | |||
| 25 |         foreach ($this->parts as $part) { | ||
| 26 | $this->$part = $this->convertMarkdownImage($this->$part); | ||
| 27 | $this->$part = $this->markdownParser->transformMarkdown($this->$part); | ||
| 28 | } | ||
| 31 |