There is one problem with link generation though. With the Markdown-based outputs, the default condition is for no RTF links to be converted to Markdown. This is in keeping with its long-standing behaviour of ignoring hyperlink syntax, along with 99% of the rest of the formatting, in the Markdown workflows.
What this output (no general conversion but links are converted) would be expected from is when a separate Convert links to MultiMarkdown setting is enabled in the general options area (below the independent option to convert tables and lists). This setting was added to the Mac a bit ago, at the request of those that generally do not want RTF conversion, but found the notion of having links converted handy.
Yes, this is using MultiMarkdown link reference syntax, which allows for the following forms:
[code]Refer to [Some Section].
Refer to [Some Section][].
Refer to [a section I’d like to talk about][Some Section].
Some Section
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/code]
You can use parentheses, but only if you also format it as a proper link to an anchor point, and thus be capable of anticipating how MMD is going to turn your title into an ID, or by supplying your own custom ID, demonstrated in the second example below.
[code]
Refer to something with a raw link.
Refer to another thing.
But there is no need to use HTML anchors with [custom ID references either][customid].
Some Section
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
Override [customid]
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/code]