[[ViewSource(fileName)]]
과 같이 사용하면, #!
처리한 것과 같이 동일하게 나오게 하고 싶어서 다음과 같이 했습니다.
function macro_ViewSource($formatter,$value) {
print $value;
$value = file_get_contents($value);
//print $res;
if ($value[0] == "<" and $value[1] == "?") {
$res = processor_php($formatter,$value, $options=array()) ;
} else {
$res = processor_plain($formatter,$value, $options=array()) ;
}
return $res;
};
}