Brooklyn Nicholson
b17eb94907
fix(tui): don't italicize intraword underscores in markdown
The inline markdown regex matched `_..._` / `__...__` anywhere, so file
paths like `browser_screenshot_ecc1c3feab.png` got mid-path italics.
Require non-word flanking (`(?<!\w)` / `(?!\w)`) on underscore emphasis
so snake_case identifiers and paths render literally, matching the
CommonMark intraword rule. `*` / `**` keep intraword semantics.
2026-04-20 17:04:09 -05:00
..
2026-04-20 11:38:11 -05:00
2026-04-20 11:38:11 -05:00
2026-04-18 18:04:08 -05:00
2026-04-20 11:12:13 -05:00
2026-04-20 17:04:09 -05:00
2026-04-20 07:14:33 -07:00
2026-04-18 15:17:42 -05:00
2026-04-19 07:55:38 -05:00
2026-04-20 07:14:33 -07:00
2026-04-16 22:32:53 -05:00
2026-04-16 22:32:53 -05:00
2026-04-18 09:46:36 -05:00
2026-04-20 09:30:17 -07:00
2026-04-16 22:32:53 -05:00
2026-04-20 15:25:29 -05:00