Append remarks value with overwrite file instead of replace
Open
authoring
- Dominant language
- C#
- Stars
- 4.4k
- Forks
- 890
- Avg merge
- 2h 11m
- Merged PRs (30d)
- 10
Description
Hello,
Is it possible to append the existing `remarks` value with an overwrite file instead of replacing it?
The API class:
```csharp
///
/// My summary.
///
///
/// My remarks.
///
public class MyClass
{
}
```
The overwrite file:
```markdown
---
uid: MyClass
remarks: *content
---
My overwrite file content.
```
**Actual produced remarks in HTML:**
```html
My overwrite file content.
```
**Desired produced remarks in HTML:**
```html
My remarks. My overwrite file content.
```
Contributor guide
Assessment
This issue has not been assessed yet.