obsidian-sortable icon indicating copy to clipboard operation
obsidian-sortable copied to clipboard

Table sorting plugin for https://obsidian.md

Results 9 obsidian-sortable issues
Sort by recently updated
recently updated
newest added

From https://meta.wikimedia.org/wiki/Help:Sorting: > The way items are sorted depends on the data type of the first rows. To determine the data type, the first 5 non-blank rows below the header...

- https://github.com/blacksmithgu/obsidian-dataview

feature

Thanks for this really helpful plugin! Please try to get it into the official list to install via "Community Plugins" … For a future version, especially for use with the...

feature

Current implementation: ```typescript function onClick(evt: MouseEvent): void { const htmlEl = (evt.target); const th = htmlEl.closest('thead th'); // click was not performed in a table, exit if (th == null)...

question

When sorting by date, Sortable uses the string instead of the iso-date. For example: I have my release dates logged as iso-date: `ReleaseDate:: YYYY-MM-DD`, but my standard date-view is `DD-MM-YYYY`....

I find occasionally, for one reason or another, I have a table I do _not_ want Sortable to sort. Would it be possible to have Sortable ignore everything inside of...

When content is updated in the table that is being sorted, coming from a dataview query, the intended sorting is reset. Specifically, the column that was set to the sorting...

dataview-interop

For these entries: ``` 02-E5-27-38-DB-CF 00-55-DA-52-FA-15 1C-69-7A-6B-15-9D ``` this extension sorts them as: ``` 00-55-DA-52-FA-15 1C-69-7A-6B-15-9D 02-E5-27-38-DB-CF ``` instead of: ``` 00-55-DA-52-FA-15 02-E5-27-38-DB-CF 1C-69-7A-6B-15-9D ``` Diff ```diff 00-55-DA-52-FA-15 -1C-69-7A-6B-15-9D 02-E5-27-38-DB-CF...

bug

Must have some sort of regression testing.

tests