[Bug] .NET API bug Property Value content not render correctly in generated Markdown
- Dominant language
- C#
- Stars
- 4.4k
- Forks
- 890
- Avg merge
- 2h 11m
- Merged PRs (30d)
- 10
Description
I have a Class with comment like this:
```csharp
namespace ClassLibrary1
{
///
/// This is a test class
///
///
public class Class1
{
///
/// This is a test summary
///
///
/// is test
///
public string TestStringProperty { get; set; }
}
}
```
After build, I will got two files ClassLibrary1.dll and ClassLibrary1.xml, xml will with this content:
```xml
ClassLibrary1
This is a test class
This is a test summary
is test
```
**Expected behavior**
all the content should be rendered in generated markdown page.
but, the property value is not rendered correctly:

**Context (please complete the following information):**
- OS: Windows
- Docfx version: 2.78.2
- .NET version: .NET 8.0
- `docfx.json` config
```json
{
"metadata": [
{
"src": [
{
"files": [
"*.dll"
]
}
],
"dest": "./api",
"outputFormat": "markdown"
}
]
}
```
Contributor guide
Assessment
This issue has not been assessed yet.