mirror of
https://github.com/deepseek-ai/deepseek-harness.git
synced 2026-08-29 04:26:38 +00:00
Markdown tables were always rendered at natural width, so anything wider than the 748px message column could only be read through horizontal scrolling. Following the deepsuite chat TableWrapper treatment: tables under four columns (and any table inside a blockquote) now fill the column and wrap cell text down to the cells' minimum readable width, while four-or-more-column tables keep their natural width behind the wrapper's horizontal scroll and carry the stable md-table-wide hook. The chat transcript widens hooked tables past the message column with a pure-CSS container-query breakout (100cqw against ChatView's scroll container standing in for deepsuite's JS-measured list width), keeping the table content aligned with the message column and clamping to neutral when the transcript is narrower than the column.