fix: markdown table text displaying vertically
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
1 file changed
+4
-1
af7d2e51
→
255bc46c
modified src/components/Markdown.svelte
@@ -410,9 +410,10 @@
|
|
|
|
|
|
| - | |
|
|
|
|
| + | |
| + | |
|
|
|
|
|
@@ -420,6 +421,8 @@
|
|
|
|
|
|
| + | |
| + | |
|
|
|
|
|