-
-
Notifications
You must be signed in to change notification settings - Fork 5.7k
[feature request] sidebar item add collapse and expand #728
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
Comments
I wrote a small solution this afternoon, although it may waste more calculation resource. window.$docsify = {
plugins: [
function(hook, vm) {
hook.doneEach(function() {
document.querySelectorAll(".sidebar-nav > ul > li").forEach(
function(node, index, nodelist) {
var span = document.createElement("span");
span.innerHTML = node.firstChild.data;
span.style.cursor = "pointer";
span.onclick = function(event) {
var ul = event.target.nextElementSibling;
if (ul.style.display === "none") {
ul.style.display = "block";
} else {
ul.style.display = "none";
}
};
node.firstChild.replaceWith(span);
node.lastChild.style.display = "none";
});
var active = document.querySelector(".sidebar-nav li.active");
if (active) {
active.parentElement.style.display = "block";
}
});
}
]
} there is also a live demo. => https://wsine.github.io/blog |
当一章只有一级的时候,这章就不显示了 |
+1 |
@Wsine Can you refactor this a bit as per your choice and submit a PR to add this plugin in the docs. |
@anikethsaha Well, it seems that current version did not satisfy all the demands on collapsable sidebar. I will try my best when I have time. |
Sure👍 |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
very good! view my site: https://kepan.org/docsify i have many heading levels (up to 108), i want the sidebar items can be expand & collapse. like Typora's side bar, that's very good! it can expand, collapse, and sync scroll. |
Is this still the best way to achieve this? I see various things kicking around when i search for it. |
This looks to be a duplicate of issue #900, which also includes a PR. |
Appreciate for the work of this project.
I know it seems rule to ask for such feature and maybe it is "impossible" to implement. But, how if user provides directories structure in
_sidebar.md
file.for example
_sidebar.md
The original demand comes from that i want to construct my personal blog with doscify. However, the sidebar is as long as my article amount.
I found that i can write a bash script to help me scan my folders and then generate a sidebar file. such as
find . -mindepth 2 -name "*.md" | awk -F'/' 'BEGIN {RS=".md"} {arr[$2]=arr[$2]"\n - ["$3"](/"$2"/"$3")"} END {for (key in arr) print "- "key, arr[key]}' > _sidebar.md
what's more, travis ci can help us do such a job.
so, can docsify add a toggle feature for no hyperlink item in the sidebar? it is ok for adding it into configurable options.
The text was updated successfully, but these errors were encountered: