Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix broken docs caused by incorrect feature-scroll usage in Antora #3262

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dmitrysulman
Copy link

There are a couple of issues with the feature-scroll attribute in the Antora docs:

  • The endif::[] for the Offset-based Window table row is placed incorrectly:
    ifdef::feature-scroll[]
    | Offset-based `Window<T>`
    | `limit + 1` at `OffsetScrollPosition.getOffset()`
    | One to many queries fetching data starting at `OffsetScrollPosition.getOffset()` applying limiting.
    a| A `Window` can only navigate to the next `Window`.
    endif::[]
    * `Window` provides details whether there is more data to fetch.
    * Offset-based queries becomes inefficient when the offset is too large because the database still has to materialize the full result.

    This causes the table to break when feature-scroll is not set:
Screenshot 2025-03-29 at 22 02 53
  • Defining :feature-scroll: true in index.adoc has no effect because attributes set on one page are not visible to other pages. Additionally, setting the attribute value to true is redundant — ifdef blocks are evaluated based on whether the attribute is defined, regardless of its value (source).

As a result, Scroll API-related content is always hidden in the documentation.

This PR fixes the above by explicitly defining the :feature-scroll: attribute in the two pages where it's used:

@spring-projects-issues spring-projects-issues added the status: waiting-for-triage An issue we've not yet triaged label Mar 29, 2025
@dmitrysulman
Copy link
Author

Overriding this attribute for a specific spring-data- project can be done by unsetting the attribute at the Antora playbook level.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
status: waiting-for-triage An issue we've not yet triaged
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants