asciidoctor / asciidoctor-gradle-plugin

A Gradle plugin that uses Asciidoctor via JRuby to process AsciiDoc source files within the project.
https://asciidoctor.github.io/asciidoctor-gradle-plugin/
Apache License 2.0
286 stars 122 forks source link

Asciidoctor cross reference info message: INFO: possible invalid reference #612

Closed AndreVelde closed 3 years ago

AndreVelde commented 3 years ago

When I am using cross references I am getting the following info messages at startup:

jul. 02, 2021 2:31:41 P.M. uri:classloader:/gems/asciidoctor-2.0.10/lib/asciidoctor/substitutors.rb sub_macros
INFO: possible invalid reference: synchronization

While the cross reference itself on my html page works fine.

The code that I have is as following: index.adoc:

:toc: left
:sectlinks:
:sectnums:
:sectnumlevels: 5
:toc: left
:toclevels: 2
:page-layout: docs
:source-highlighter: highlightjs
:stylesheet: riak.css

= Trips
include::synchronization.adoc[]
include::trips.adoc[]

synchronization.adoc:

[[synchronization, Synchronization]]
== Synchronization

trips.adoc:

[[trips, Trip(s)]]
== Trip(s)

[.lead]
.... <<synchronization.adoc#synchronization,synchronization>> ....

Is this info message caused by something that I did wrong or is it something else?