Conditions | 3 |
Paths | 4 |
Total Lines | 13 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 2 | ||
Bugs | 1 | Features | 0 |
1 | <?php |
||
16 | public function toSyntax() |
||
17 | { |
||
18 | $openingTag = '<code'; |
||
19 | if (!empty($this->data['attrs']['data-language'])) { |
||
20 | $openingTag .= ' ' . $this->data['attrs']['data-language']; |
||
21 | } else { |
||
22 | $openingTag .= ' -'; |
||
23 | } |
||
24 | if (!empty($this->data['attrs']['data-filename'])) { |
||
25 | $openingTag .= ' ' . $this->data['attrs']['data-filename']; |
||
26 | } |
||
27 | $openingTag .= '>'; |
||
28 | return $openingTag . "\n" . $this->data['content'][0]['text'] . "\n</code>"; |
||
29 | } |
||
31 |