Fixes issue where markdown table cell text was rendering character-by-character vertically instead of horizontally. The root cause was the parent .markdown container’s word-break: break-word property affecting table cells.
Solution: Override word-break and overflow-wrap to ‘normal’ for table cells (td and th) to prevent character-level breaking while maintaining proper text wrapping behavior.
Fixes: 90c33657e807e809594049c18968254438f88f7b
Fixes issue where markdown table cell text was rendering character-by-character vertically instead of horizontally. The root cause was the parent .markdown container’s word-break: break-word property affecting table cells.
Solution: Override word-break and overflow-wrap to ‘normal’ for table cells (td and th) to prevent character-level breaking while maintaining proper text wrapping behavior.
Fixes: 90c33657e807e809594049c18968254438f88f7b
Rebase
Nice!