Untitled
1 year ago in Plain Text
<?php
$themes = explode(".theme", `ls /usr/share/highlight/themes`);
foreach ($themes as $k=>$theme){
$theme = trim($theme);
system("echo '<hr><h3>$theme</h3>' >> all.html && highlight -l --out-format=xhtml --inline-css -s $theme --syntax=php < snippet.php 1>> all.html");
}