Back in rss2email 2.70, links were emitted as Markdown reference links at the end of a post:
blah blah [blah blah][1] blah bleh
[1]: http://www.example.com/blah-blah/
URL: http://www.example.com/blahs
However, with a modern version of rss2email (specifically in my case, 3.9), links are emitted as inline Markdown links. What's worse, they end up being word wrapped!
blah blah [blah blah](http://www.example.com/blah-
blah/) blah bleh
URL: http://www.example.com/blahs
The only relevant configuration option I've been able to find is links-after-each-paragraph, which is described as:
Put the links after each paragraph instead of at the end.
I can't seem to find anything that controls whether links are emitted as inline or reference Markdown links.
How can I get rss2email 3.9 to emit reference Markdown links for links in the blog post content?