File tree Expand file tree Collapse file tree 1 file changed +22
-0
lines changed
fern/products/sdks/overview/csharp/changelog Expand file tree Collapse file tree 1 file changed +22
-0
lines changed Original file line number Diff line number Diff line change 1+ ## 2.18.1
2+ ** ` (fix): ` ** While most ` < ` s and ` > ` s should be escaped to ` < ` and ` > ` to avoid mangling the output,
3+ genuine XML/HTML tags should be kept as-is; this commit scans for potential valid tags and
4+ prevents their being escaped. (Ambiguous cases are escaped.)
5+
6+ Before:
7+ ```
8+ /// XMLDoc (C#) (Example of actual XML tags):
9+ /// See <a href="https://example.com/docs">the docs</a> for more info.
10+ /// Use <code>getValue()</code> to retrieve the value.
11+ /// Note: when count < 10 or count > 100, special handling applies.
12+ ```
13+
14+ After:
15+ ```
16+ /// XMLDoc (C#) (Example of actual XML tags):
17+ /// See <a href="https://example.com/docs">the docs</a> for more info.
18+ /// Use <code>getValue()</code> to retrieve the value.
19+ /// Note: when count < 10 or count > 100, special handling applies.
20+ ```
21+
22+
You can’t perform that action at this time.
0 commit comments