$ cat footnotes.txt
a note[^footnote].
[^footnote]: footnote content
$ cat footnotes.txt | multimarkdown -t latex
a note\footnote{footnote content}.
But this is not:
$ cat footnotes2.txt
a note[^footnote], then another one[^footnote].
[^footnote]: footnote content
$ cat footnotes2.txt | multimarkdown -t latex
multimarkdown(92359) malloc: *** error for object 0x305f20: pointer being freed was not allocated
*** set a breakpoint in malloc_error_break to debug
multimarkdown(92359) malloc: *** error for object 0x841f0f: pointer being freed was not allocated
*** set a breakpoint in malloc_error_break to debug
Bus error
P.S: I'm not using the latest release, but a personal fork. Maybe this is not relevant in current mainstream version...
This is ok:
But this is not:
P.S: I'm not using the latest release, but a personal fork. Maybe this is not relevant in current mainstream version...