Rubrics using Markdown -


is possible citate book or article using markdown ?

for example: wrote [misterknow][1], not possible.

[1]: mister know, book of markdown syntax, 2015

this render link in [misterknow][1] , when click on it, move [1].

this not supported standard markdown feature. additionally, not aware of non-standard extensions support such feature.

i see 2 ways address this:

  1. if markdown implementation using supports footnotes, use footnote. note while footnotes non-standard (they not officially defined in rules), feature has been supported many implementations many years , rather consistent across implementations support it. use example:

    as wrote *mister know*[^1], not possible.  [^1]: *mister know*, book of markdown syntax, 2015 
  2. if markdown implementation using supports it, write own extension implements custom feature fits specific needs. without more information, hard whether possible or required accomplish this.


Comments