llvm-project
7d669b7c - [Clang][Comments] Allow HTML tags across multiple lines (#120843)

Commit
236 days ago
[Clang][Comments] Allow HTML tags across multiple lines (#120843) HTML starting tags that span multiple lines were previously not allowed (or rather, only the starting line was lexed as HTML). Doxygen allows those tags. This PR allows the starting tags to span multiple lines. They can't span multiple (C-)Comments, though (it's likely a user-error). Multiple BCPL comments are fine as those are single lines (shown below). Example: ```c /// <a /// href="foo" /// >Aaa</a>b int Test; ``` Fixes #28321.
Author
Parents
Loading