tbls
tbls copied to clipboard
Better handling of table descriptions on README vs. detail page.
Currently, the README.md
file lists all tables with their full table comment.
I'm putting a lot of info in some of my table descriptions, including SQL code blocks. These render rather badly in the comment column of the central Tables table, which treats markdown just a little different.
Perhaps the Tables table should only use the first paragraph of each table description.
E.g. the description
Foo widgets
Tracks Foo widget metadata as the frobnar twiddles with the status and inserts more information.
Because there may be redundant, duplicated rows with different timestamps in this table, please use a window query to consolidate adjacent rows:
-- Some elaborate sample query
would only take the text up to the first double newline and so the comment in the Tables comments column becomes:
Foo widgets
and only the detail page shows the remainder.
Hi @mjpieters. I know it's very late, but I implemented it in #325 .
Thank you!