Steps to reproduce
Install DuckDB
In a terminal
$ duckdb
D create table foo (id INTEGER, name VARCHAR);
D desc foo;
┌─────────────┬─────────────┬─────────┬─────────┬─────────┬─────────┐
│ column_name │ column_type │ null │ key │ default │ extra │
│ varchar │ varchar │ varchar │ varchar │ varchar │ varchar │
├─────────────┼─────────────┼─────────┼─────────┼─────────┼─────────┤
│ id │ INTEGER │ YES │ │ │ │
│ name │ VARCHAR │ YES │ │ │ │
└─────────────┴─────────────┴─────────┴─────────┴─────────┴─────────┘
Copy the result table from DuckDB and paste it into Obsidian.
Expected result
Prior to the most recent update, the table would be correctly formatted.
Actual result
See screenshot.