Here the script:
✂------✂------✂------✂------✂------✂------✂------✂------✂------✂------
#!/usr/bin/php -q
<?php
include_once "/path/to/markdown-extra.php";
while (!feof(STDIN)) {
$my_text .= fread(STDIN, 4096);
}
$my_html = Markdown($my_text);
echo $my_html;
?>
✂------✂------✂------✂------✂------✂------✂------✂------✂------✂------