Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
44 | protected function toMarkdown($content) |
||
45 | { |
||
46 | $tmpfname = tempnam(sys_get_temp_dir(), 'fillet'); // good |
||
47 | file_put_contents($tmpfname, $content); |
||
48 | $cmd = $this->config['pandoc']['bin'] . ' --no-wrap -f html -t markdown ' . $tmpfname; |
||
49 | $content = shell_exec($cmd); |
||
50 | unlink($tmpfname); |
||
51 | return $content; |
||
52 | } |
||
53 | |||
61 | } |