Allow to collapse even with multiple children #93
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.
This PR introduces an additional flag
force_collapse
to allow a section to collapse even if it has multiple children, which is a simple workaround for the issue in #53.Considering the example in the issue above, the original file structure is as follows:
. └── projects/ └── project_name/ └── docs/ ├── page1.md ├── page2.md └── subdir/ └── page3.md
The generated structure would be:
To move everything within
Docs
up one level, put a.pages
file inside thedocs
folder with the following contents:The new structure would be:
which is the desired outcome described in #53.