. */ if (!defined('LACONICA')) { exit(1); } require_once('markdown.php'); class DocAction extends Action { function handle($args) { parent::handle($args); $title = $this->trimmed('title'); $filename = INSTALLDIR.'/doc/'.$title; if (!file_exists($filename)) { common_user_error(_t('No such document.')); return; } $output = Markdown(file_get_contents($filename)); common_show_header(_t(ucfirst($title))); common_raw($output); common_show_footer(); } }