configure wmd to leave text in markdown

master
Joey Hess 2009-03-08 13:11:26 -04:00
parent 311182a699
commit 1bf100cfde
2 changed files with 12 additions and 4 deletions

View File

@ -37,9 +37,16 @@ sub formbuilder_setup (@) {
sub include_javascript ($;$) {
my $page=shift;
my $absolute=shift;
return '<script src="'.urlto("wmd/wmd.js", $page, $absolute).
'" type="text/javascript"></script>'."\n";
my $wmdjs=urlto("wmd/wmd.js", $page, $absolute);
return <<"EOF"
<script type="text/javascript">
wmd_options = {
output: "Markdown"
};
</script>
<script src="$wmdjs" type="text/javascript"></script>
EOF
}
1

View File

@ -85,4 +85,5 @@ remains. Some CSS to clean up the display of the live WMD preview would be good
> converted from mdwn to html. I think that wmd is converting the mdwn
> into html when the form is posted, so it would also save like that.
> I assume that is designed for websites that do not use markdown
> internally. Doesn't it have a setting to leave it as markdown? --[[Joey]]
> internally. Doesn't it have a setting to leave it as markdown?
>> Found setting, fixed. --[[Joey]]