This should be waaaay easier...
I want to add a \"coded\" line break to the XML documentation in my code
///
/// Get a human-readable
You can use a
tag to produce a paragraph break or you can wrap text in
tags as a way to group the text and add the blank line after it, but there is no equivalent to
or anything like that. (Which according to this old MS forum post is by design.) You can get the list of available tags in this documentation article from MS. Documenting your code
Example (based on original OP sample):
///
/// Get a human-readable variant of the SQL WHERE statement of the search element.
/// Rather than return SQL, this method returns a string with icon-tokens, which
/// could be used to represent the search in a condensed pictogram format.
///