(m: re.Match)
| 432 | ``<Insert Month and\nYear>`` or comparisons like ``<CIN2`` that span |
| 433 | lines and break Vue/VitePress ("Element is missing end tag"). |
| 434 | |
| 435 | Preserves: intentional HTML comments, Markdown auto-links <https://...>, |
| 436 | known safe HTML tags, and base64 data URIs in img tags. |
| 437 | Escapes every other ``<`` (complete or incomplete tag-like sequences). |
| 438 | """ |
| 439 | if not text: |
| 440 | return text |
| 441 | |
| 442 | protected: list[str] = [] |
| 443 |
nothing calls this directly
no outgoing calls
no test coverage detected