This plugin works great, especially having a single sortspec to deal with manual sorting of the main navigation and pinning important notes to the top of lists.
I would love to be able to add in a UI separator to the file explorer view in my sortspec, something like this, using a simple --- delimiter:
---
sorting-spec: |
target-folder: Daily
Tracker
> a-z
target-folder: /
Home
---
Daily
Weekly
Projects
Notes
---
Journal
Dreams
Thoughts
Writing
---
Assets
Temporary
...
z-a
---
This would create a separator in the workspace which would have markup like:
<div class="nav-folder is-collapsed"/>
<div class="nav-separator">
<div class="nav-separator-inner"></div>
</div>
And CSS like:
.nav-folder-separator {
display:block;
width:100%:
padding: var(--some-var) var(--some-var)
}
.nav-folder-separator-inner {
/* you get the idea*/
}
I could help with the markup/CSS part if this sounds like a good idea.
This plugin works great, especially having a single
sortspecto deal with manual sorting of the main navigation and pinning important notes to the top of lists.I would love to be able to add in a UI separator to the file explorer view in my sortspec, something like this, using a simple
---delimiter:This would create a separator in the workspace which would have markup like:
And CSS like:
I could help with the markup/CSS part if this sounds like a good idea.