https://mattermost.atlassian.net/browse/MM-42148

```release-note
NONE
```
Этот коммит содержится в:
Agniva De Sarker
2022-04-18 13:53:07 +05:30
коммит произвёл GitHub
родитель c09c36ce5e
Коммит 98e7bb9ee9
6 изменённых файлов: 9 добавлений и 3 удалений

Просмотреть файл

@@ -141,7 +141,7 @@ func (r *notificationRenderer) renderText(w util.BufWriter, source []byte, node
func (r *notificationRenderer) renderTextBlock(w util.BufWriter, _ []byte, node ast.Node, entering bool) (ast.WalkStatus, error) {
if !entering {
if _, ok := node.NextSibling().(ast.Node); ok && node.FirstChild() != nil {
if node.NextSibling() != nil && node.FirstChild() != nil {
_ = w.WriteByte(' ')
}
}