[backport camel-spring-boot-4.22.x] Reword micrometer shutdown-filters Javadoc to avoid mis-nested AsciiDoc - #1974
Merged
davsclaus merged 1 commit intoSep 14, 2026
Conversation
The Javadoc of camel.metrics.log-metrics-on-shutdown-filters is copied into the generated starters/micrometer.adoc table. Its two `*` characters (`*` and `camel.exchanges.*`) pair up as AsciiDoc constrained bold across the monospace spans, so Asciidoctor emits <code>...<strong></code>. The website's HTML-to-Markdown step cannot recover from that nesting and skips the page, leaving starters/micrometer.md missing. Reword the sentence so only one `*` remains. A passthrough (+...+) is avoided because it would also show up literally in the Spring configuration-metadata tooltip. See apache/camel-website#1746 _Claude Code on behalf of Adriano Machado (@ammachado)_ _This was generated by an AI agent and may contain inaccuracies. Please verify before relying on it._ (cherry picked from commit 6cca665)
davsclaus
approved these changes
Sep 14, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Backport of #1973 to
camel-spring-boot-4.22.x. Thecamel-spring-boot/4.22.x/starters/micrometerpage is one of the 35 documentation pages with no.mdtwin on the website, see apache/camel-website#1746.The Javadoc of
camel.metrics.log-metrics-on-shutdown-filterscontains two*characters (`*`and`camel.exchanges.*`). In the generatedstarters/micrometer.adoctable, Asciidoctor pairs them as constrained bold across the monospace spans and emits<code><strong></code> ... <code>camel.exchanges.</strong></code>. The website's HTML-to-Markdown step then losesarticle.docand skips the page.Change
Reword the Javadoc so only one
*remains:Cherry-picked from the
maincommit with-x. The generatedmicrometer.adocconflicted only because 4.22.x has nolog-metrics-on-shutdown-formatoption (17 options instead of 18); it was regenerated by building the starter on this branch, and the result differs from the branch by a single table line.Verification
Rendered the regenerated 4.22.x
micrometer.adocwith Asciidoctor.js and parsed it with the website'snode-html-parser: before the changearticle.docis lost (page skipped); after it, the HTML is valid andarticle.docis found. Module tests were not run: the change touches a Javadoc comment and generated docs only.🤖 Generated with Claude Code on behalf of Adriano Machado (@ammachado)
This was generated by an AI agent and may contain inaccuracies. Please verify before relying on it.