fix(desktop): preserve angle brackets in inline code - #5816
Conversation
Signed-off-by: Nick DiZazzo <nick.dizazzo@gmail.com>
|
nice small one @wesbillman |
|
worth asserting on the raw serializer output for that case. the reason it matters: overriding the minor, possibly a no-op: |
Summary
The upstream text serializer HTML-escaped
<and>before Markdown rendering. Inline code preserves those entity strings literally, so messages such as<repo root>/websitedisplayed as<repo root>/website.Related issue
N/A — no matching open issue or pull request found.
Testing
just ciManual regression case: type
`<repo root>/website`in the desktop composer and send it. The rendered inline code should keep the angle brackets instead of showing HTML entities.Before: the reported message displayed
<repo root>/website.After: the serializer regression test verifies the emitted Markdown remains
`<repo root>/website`.Original Bug