Markdown and footnotes so far
I'm referring to Markdown: Syntax at daringfireball.net, which seems to be primary source for Markdown syntax.
Markdown is known to be based on already existing formatting in mails and newsgroups. In mails and newsgroup, I often see something like this for footnote and forwarded references:
Blah, blah [1] blah, blah.
[1] http://somesite.com/somepage.html#someanchor
Surprisingly, this very common format, is not part of the primary Markdown reference. It only knows something like:
Blah, blah [some title][id] blah, blah.
[id]: http://somesite.com/somepage.html#someanchor
And I have never seen any using this spontaneously in either a newsgroup or a mailing list, while the former is very common.
I could just find something called PHP Markdown Extra, which has something closer to the common spontaneous usage, while different enough:
Blah, blah [^id] blah, blah.
[id]: http://somesite.com/somepage.html#someanchor
Closer, but I still never seen anyone using this in a newsgroup or mail.
The question
I wonder why a so much common usage is not part of the primary markdown reference, and even not part of any variant I know. If someone knows some reason for this, I'm interested in knowing this reason. On the other hand, if I just missed something, like missing a markdown variant which is of very common use and includes the in practice most natural way of writing a footnote or forwarded reference (the first one introduced in this post), then I would like to know it.