[WIP] 'hidden' option for domain directives#9671
Closed
jakobandersen wants to merge 1 commit intosphinx-doc:masterfrom
Closed
[WIP] 'hidden' option for domain directives#9671jakobandersen wants to merge 1 commit intosphinx-doc:masterfrom
jakobandersen wants to merge 1 commit intosphinx-doc:masterfrom
Conversation
Member
|
Closing in favour of #10478. A |
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 subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.
Feature or Bugfix
Purpose
Adding feature for #9662, implemented as suggested in #9662 (comment).
Each domain directive that inherits from
ObjectDescriptionand keeps theoption_specentries in that base class gets an optionhidden. This will cause the complete document subtree rooted at that declaration to be replaced with an emptyinlinenode but where allidsmention in the replaced subtree are put in the new node. As the domains have already run, this effectively hides the declaration, but keeps the anchors in the document.Detail
Each
addnodes.descgets a booleanhiddenattribute based on the option, which the post-transform searches for.Instead of duplicating the option I have changed the py, c, cpp, and js domains to extend a copy of the
option_specinObjectDescription.TODO
Assuming this implementation is reasonable the following should be done:
References
Fixes #9662