labels with non ascii (but legal latex/html)
characters are transformed in some weird way. Please notice the - that gets converted to null.
There are limitations to what can (easily) be translated. I improved
the print_raw_element function so that the "null" doesn't appear, but
the hyphen will simply be left out.
The hyphen, however, remains in the link, which gets broken.
$ cat hyphen.txt
Link to [](#figure-1).
![figure-1][]
[figure-1]: file.png
$ cat hyphen.txt | multimarkdown -t latex
Link to \autoref{figure-1}.
\begin{figure}
\begin{center}
\includegraphics[keepaspectratio,width=\textwidth, height=.75\textheight]{file.png}
\end{center}
\label{figure1}
\end{figure}
[continued from the MMD Discussion Group]
The hyphen, however, remains in the link, which gets broken.