christosgkoros commented on PR #25390:
URL: https://github.com/apache/camel/pull/25390#issuecomment-5213213441
The `Validate documentation` job failure was caused by this PR — pushed a
fix in `6607c56`.
The site build produced exactly four asciidoctor warnings and all four were
in `rest-postman-component.adoc`; the job treats warnings as failures:
```
WARN (asciidoctor): skipping reference to missing attribute: petid
WARN (asciidoctor): skipping reference to missing attribute: baseurl
WARN (asciidoctor): skipping reference to missing attribute: variable
WARN (asciidoctor): skipping reference to missing attribute: placeholders
```
AsciiDoc was parsing the brace spans as attribute references rather than
literal text. They are now wrapped in an inline passthrough (`` `+{petId}+` ``,
`` `+{{baseUrl}}+` ``), which suppresses substitution. I used a passthrough
rather than the backslash escaping used in `rest-openapi-component.adoc`,
because Postman's doubled braces make `\{\{baseUrl}}` awkward to read — happy
to switch if you prefer consistency with the existing page.
Note that the same job log also contains `unix-dgram` / `node-gyp` native
build errors from the camel-website toolchain. Those are unrelated to this PR
and did not fail the job — the Antora build ran to completion afterwards.
I have left this as a separate commit so the change since your review is
visible; it should be squashed at merge.
_Claude Code on behalf of @christosgkoros_
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]