]> sipb.mit.edu Git - ikiwiki.git/commitdiff
configure wmd to leave text in markdown
authorJoey Hess <joey@gnu.kitenet.net>
Sun, 8 Mar 2009 17:11:26 +0000 (13:11 -0400)
committerJoey Hess <joey@gnu.kitenet.net>
Sun, 8 Mar 2009 17:11:26 +0000 (13:11 -0400)
IkiWiki/Plugin/wmd.pm
doc/todo/mdwn_preview.mdwn

index bdbcecc069d5777872042de178f4b4cbc6de0559..9ddd237abf7e992f0e0d2dfdfa3daf3ed1c59baa 100644 (file)
@@ -37,9 +37,16 @@ sub formbuilder_setup (@) {
 sub include_javascript ($;$) {
        my $page=shift;
        my $absolute=shift;
 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
 }
 
 1
index 2fa4603368cfa81d02513b476ad1bae7e1f58bd0..3008eb52983060c7b29ef38ad9dec744d1f55805 100644 (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
 > 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]]