| Conditions | 1 | 
| Paths | 1 | 
| Total Lines | 9 | 
| Code Lines | 5 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 0 | ||
| 1 | <?php | ||
| 16 | public function process(Parser $parser, $node, $variable, $data, array $options) | ||
| 17 |     { | ||
| 18 | parent::process($parser, $node, $variable, $data, $options); | ||
| 19 | |||
| 20 | $highlighter = new Highlighter(); | ||
| 21 | $highlighted = $highlighter->highlight($node->getLanguage(), $node->getValue()); | ||
| 22 | |||
| 23 | $node->setValue($highlighted->value); | ||
| 24 | } | ||
| 25 | } | ||
| 26 |