I discovered this issue while working on custom instructions for a Delphi Pascal code assistant. When any LLM outputs XML documentation strings (the docstring format used by Delphi) the "<summary>" XML tag is forcibly converted into an HTML element. I tried to instruct the LLM to HTML escape the XML tags, but then the escaped output is just rendered literally as "<summary>" (with the escaping included).
Here is what it looks like:

This does not occur with other XML tags in the code output (<param>, etc.), they are rendered as-is.

I expect occurrences of "<summary>" and "</summary>" in code examples to be rendered as-is without special treatment.