How to link to a section of a document in the same directory (pandoc markdown-> html output)

I have two rather simple pieces of documentation (written in markdown method, which are used to generate html files using pandoc). I would like to be able to refer to the section of the second document from the first document.

Preference order for solutions:

  • Using common labeling features
  • Using Pandoc Extensions Using
  • inline HTML
+5
source share
1 answer

Pandoc has the HTML Header Identifiers ” extension for this utility. The documentation provides an example of how to provide links from one section of a document to another.

+8

All Articles