diff -r 07a3743ce6ac -r 0f1c55d2a90a src/highlighter.c --- a/src/highlighter.c Thu Jul 11 19:41:06 2024 +0200 +++ b/src/highlighter.c Thu Jul 11 20:05:21 2024 +0200 @@ -40,6 +40,8 @@ cxBufferPutString(dest, ">"); } else if (c == '<') { cxBufferPutString(dest, "<"); + } else if (c == '&') { + cxBufferPutString(dest, "&"); } else if (c) { cxBufferPut(dest, c); }