1) I'd never registered it.
2) We *don't* want to configure markdown_path by default, because when
its defined it overrides any perl modules (e.g. Text::Markdown).
},
markdown_path => {
type => "string",
- example => 0,
+ example => 0, # /usr/bin/markdown
description => "path to an external markdown binary",
safe => 0,
rebuild => undef,
},
}
-sub checkconfig () {
- if (! defined $config{markdown_path}) {
- $config{markdown_path}="/usr/bin/markdown";
- }
-}
-
my $markdown_sub;
my $tempdir;
sub htmlize (@) {