I have a custom converter that pulls footnote tags from a markdown document. Anything marked as a footnote (marked like so: ^^footnote^^) gets removed from the document and attached to an unordered list. Once all the footnotes are in the list, the whole list is appended to the bottom of the document.
This all works great, except that no markdown conversion is performed on the pulled footnotes. For example, _hello_
isn't put into italics and the underscores are left intact.
I don't know why. It seems that if the markdown converter runs before custom converters, then the markdown formatting should have already taken place. If the markdown converter runs after the custom converter, then the footnotes should be processed along with everything else.
Any ideas? This SO question is similar, but I tried that and nothing changed.