Markdown: How to reference an item in a numbered list, by number (like LaTeX's \ref / \label)?
问题 Is there any way in markdown to do the equivalent of the cross-referencing in this LaTeX snippet? (Taken from here.) \begin{enumerate} \item \label{itm:first} This is a numbered item \item Another numbered item \label{itm:second} \item \label{itm:third} Same as \ref{itm:first} \end{enumerate} Cross-referencing items \ref{itm:second} and \ref{itm:third}. This LaTeX produces 1. This is a numbered item 2. This is another numbered item 3. Same as 1 Cross-referencing items 2 and 3. That is, I