#792697 libtext-multimarkdown-perl: Does not support cross-references

#792697#5
Date:
2015-07-17 15:36:52 UTC
From:
To:
Hi!

The upstream MultiMarkdown spec
<https://rawgit.com/fletcher/human-markdown-reference/master/index.html>
specifies cross-references such as the following:

,--- cross.mmd
# Overview [MultiMarkdownOverview]

Point to [Section][].

# Section

Point to [MultiMarkdownOverview][].
`---

which are not currently supported by this package:

,---
$ multimarkdown cross.mmd
<h1 id="overviewmultimarkdownoverview">Overview [MultiMarkdownOverview]</h1>

<p>Point to <a href="#section" title="Section">Section</a>.</p>

<h1 id="section">Section</h1>

<p>Point to [MultiMarkdownOverview][].</p>
`---

Thanks,
Guillem