Is there a way to get the output of my php function get parsed by dokuwiki? I'd like to have:
$thisfunction = function($params){
$out = "=== Heading ===\n";
$out .= "Input of **" . $params[0] . "** in bold.\n";
return $out;
}
Where the heading and bold wiki syntax gets parsed into the document output.
Thanks,
Is there a way to get the output of my php function get parsed by dokuwiki? I'd like to have:
Where the heading and bold wiki syntax gets parsed into the document output.
Thanks,