Auto-insert basic xrefstyle attribute before first section#51
Conversation
Summary of ChangesHello, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request enhances the Highlights
🧠 New Feature in Public Preview: You can now enable Memory to help Gemini Code Assist learn from your team's feedback. This makes future code reviews more consistent and personalized to your project's style. Click here to enable Memory in your admin console. Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for GitHub and other Google products, sign up here. Footnotes
|
There was a problem hiding this comment.
Code Review
This pull request introduces a useful feature to automatically add the :xrefstyle: basic attribute to AsciiDoc files if it's not present before the first section. The implementation is logical and correctly handles the described cases. The changes in disco/option.go to add a toggle for this feature are also well-implemented. I have one suggestion in disco/baller.go to improve the performance of the slice manipulation, which could be beneficial for large documents.
|
/gemini review |
There was a problem hiding this comment.
Code Review
This pull request introduces a new feature to the disco-ball formatting pipeline that automatically inserts a basic xrefstyle attribute before the first section of AsciiDoc spec documents if one is not already present. The changes include adding a new boolean option AddXrefstyle to control this behavior and updating the discoBallTopLevelSection function to implement the insertion logic. The code changes appear to be well-structured and include a test case to verify the new functionality. However, there are a few areas where improvements can be made to enhance code clarity and efficiency.
Summary
This PR updates the
disco-ballformatting pipeline to ensure that all AsciiDoc spec documents define anxrefstyleattribute before their primary top-level section. If anxrefstyledirective is already present, it is left untouched.Details
AddXrefstyleOption: Introduced a new boolean flagAddXrefstyleto DiscoOptions(disco/option.go) (defaulting totrue). This allows the logic to be toggled off via the CLI (--no-add-xrefstyle) if necessary.topLevelSection).xrefstyleAttributeEntry is found, the pipeline safely constructs one with the value"basic"(:xrefstyle: basic) and injects it immediately before the top index, appending anasciidoc.NewLine{}to maintain proper document rendering spacing.Related Issues
Fixes #49
Testing
alchemy discosuccessfully injects:xrefstyle: basicon target documents without overriding existing customxrefstyledirectives (e.g.,:xrefstyle: short).xrefstyleusing the following script: