-
Notifications
You must be signed in to change notification settings - Fork 4
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
Implement hidden nodes blind #89
base: main
Are you sure you want to change the base?
Implement hidden nodes blind #89
Conversation
…tomatically, and build once on install. Also, stub the standard build call to point to project build. Currently untested due to KnodesCommunity#82
…the ability to try it due to KnodesCommunity#82
Please rebase your branch. You should be good to go now |
@GerkinDev - I might be being dense, but, the repo doesn't show a push in the last couple weeks; maybe something didn't get pushed? Or maybe I'm not getting it |
You're supposed to base features on the |
oh you use git flow, ok, sorry |
Sorry, no, the situation is unchanged, I believe. Because I am noticably bad at things like rebasing and submodules, I established a new clean setup. In this order, I:
The error is the same as previously, I believe.
|
You've checked out typedoc before checking out the So, I totally understand this "patch" thing is a hell. It is indeed. It should be simplified for a while when TypeStrong/typedoc#1953 is resolved, until I need to follow the same pattern on another plugin (and I pray I won't) |
Wait, the ... the git submodules are different according to branches?
Honestly it's mostly the submodules that have been causing me trouble |
no, the same build failure happens if i check out develop first |
Yes, it targets the latest typedoc stable release (currently 0.22.17) in order to avoid possibly regressing release as soon as typedoc updates one of the patched files. Ok this is strange. I'll check on my windows tonight |
ok, that fix appears to work |
Hi there; I'm finally looking for a way to implement this feature. |
NOT READY FOR MERGE
This is a blind attempt to implement
HIDDEN
nodes. It is highly suspect because the author could not build or test the result, and is new to this codebase.A
HIDDEN
node is a node which will only render in the page tree if it's currently being viewed. (This behavior is known to currently be incorrect, and will be repaired before merge once buildable.)The purpose of a
HIDDEN
node is to allow a category page to include hundreds of pages underneath, and not flood the index on the right.HIDDEN
nodes must be found from a listing in another page, or through search.My personal use case is for the documentation for a state machine library. I want to include more than 200 example state machines, each on their own page, which is prohibitive without a feature like this.