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
> 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]]