obsidian-table-editor
obsidian-table-editor copied to clipboard
[BUG] Simple table foramt cannot be parsed properly
A simple Markdown table cannot be parsed.
Number | Name | Value
--|--|--
111|222|333
444|555|666
777|888|999

Obsidian: v0.14.9 Plugin version: the newest one.
Yes, as of today, the plugin expects the input to be of the form
|Number | Name | Value|
|--|--|--|
|111|222|333|
|444|555|666|
|777|888|999|
I wasn't aware of the fact that we can ignore the leading and trailing '|' from the table. Will fix this in the next iteration.