- 
  Notifications
 
You must be signed in to change notification settings  - Fork 6k
 
[csharp] Escape special characters in the API doc #4183
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Special characters like <> should be HTML escaped.
@IceAge How did you display the document (markdown)? (< and > need to be escaped in HTML but not markdown)
@wing328 As Markdown supports inline HTML, I think open angle bracket following a close angle bracket should be escaped. Please refer to Automatic Escaping for Special Characters in Markdown documentation.
How did you display the document (markdown)?
Github
(If your company is using Swagger Codegen, please consider adding your company name to this list)
Special characters like <> should be HTML escaped.
Special characters like <> should be HTML escaped.
Special characters like <, > should be HTML escaped. When the data type contains these characters (e.g.
List<long?>), should be converted to the escaped version(e.g.List<long?>).