An installer is now available for MMD 4.0b. The Mac installer is for newer machine/OS combinations. The “legacy” build for older Mac machines (e.g. PPC hardware, older OS versions) is not available yet. This gets harder and harder for me to compile since my normal machine/OS combinations won’t compile this far back. You should be able to compile from source for older hardware if you still have it around, however.
A few of the command-line features from MMD 3 have not been implemented yet (see the --help or -h command-line option). Otherwise, things should generally work as they did in MMD 3.7, with a couple of fixes and improvements.
I tried MMD4 but I run into some problems with LaTeX beamer.
If this is my plain text for a beamer frame:
### My title
my content
MMD3 would give:
\begin{frame}
\frametitle{My title}
\label{mytitle}
my content
\end{frame}
MMD4 gives
\section{My title}
\label{mytitle}
my content
\end{document}
I am sure there is an easy solution, but I don’t know how.
--
You received this message because you are subscribed to the Google Groups "MultiMarkdown Discussion List" group.
To unsubscribe from this group and stop receiving emails from it, send an email to multimarkdow...@googlegroups.com.
To post to this group, send email to multim...@googlegroups.com.
Visit this group at http://groups.google.com/group/multimarkdown?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.
Thanks. I run my conversion from MMD to (beamer) LaTeX with the use of this Applescript:
on translate_line_breaks(str)
set AppleScript's text item delimiters to {ASCII character 13}
set _lines to every text item of str
set AppleScript's text item delimiters to {ASCII character 10}
set str to _lines as text
set AppleScript's text item delimiters to {}
return str
end translate_line_breaks
set my_text to the clipboard
(* Add beamer metadata *)
set my_text to "base header level: 1 " & return & "LaTeX Mode: beamer " & return & "LaTeX XSLT: beamer " & return & return & my_text
-- 2013-05-02 MMD3: set markdownloc to "/usr/local/bin/mmd2tex"
-- 2013-05-02 MMD4:
set markdownloc to "/Users/whrose/Library/Application\\ Support/MultiMarkdown/bin/mmd2LaTeX.pl"
set my_text to translate_line_breaks(my_text)
set _output to do shell script "echo " & the quoted form of my_text & " | " & markdownloc
set the clipboard to _output
Where do I add the -t beamer bit?