AsciiDoc supports intelligent inter-document references via the following syntax:
<<document-b.adoc#section-b,Section B>>
When compiled, they will translate to an appropriate link depending on the output format. See this section in the Asciidoctor manual: http://asciidoctor.org/docs/user-manual/#inter-document-cross-references
On github, they translate to an html link, e.g.,
<a href=".../document-b.html#section-b">Section B</a>
But since the markup is rendered on demand, no such .html file exists. Instead, the generated link should look like this:
<a href=".../document-b.adoc#section-b">Section B</a>
AsciiDoc supports intelligent inter-document references via the following syntax:
When compiled, they will translate to an appropriate link depending on the output format. See this section in the Asciidoctor manual: http://asciidoctor.org/docs/user-manual/#inter-document-cross-references
On github, they translate to an html link, e.g.,
But since the markup is rendered on demand, no such
.htmlfile exists. Instead, the generated link should look like this: