I know this is a Rust language forum but I do not know any other place besides here where mdBook is discussed. I am starting with mdBook with the intention of creating a relatively long report. The user guide is easy to follow, everything worked as expected so far.
However, the user guide does not explain how to use cross references. What is achieved in LaTeX with the commands \label{} and \ref{} or with the annotations {#} and [@] in Pandoc. Would appreciate if someone can point to a simple example, or post one.
Each heading tag will be automatically turned into an anchor you can link to, so ## How to use cross-references? would be accessible as [blah](#how-to-use-cross-references).
You can also use normal HTML elements to tag parts of your document. For example
Here is some text linking to the bottom of [the next paragraph](#next-paragraph).
This is another paragraph.
<div id="next-paragraph" />