Restore line feed for markdown lists support in comments
This commit is contained in:
parent
f34cc2a48e
commit
110d463fec
|
@ -153,7 +153,9 @@ export class VideoCommentComponent implements OnInit, OnChanges {
|
||||||
}
|
}
|
||||||
|
|
||||||
private async init () {
|
private async init () {
|
||||||
const html = await this.markdownService.textMarkdownToHTML(this.comment.text, true, true)
|
// Before HTML rendering restore line feed for markdown list compatibility
|
||||||
|
const commentText = this.comment.text.replace(/<br.?\/?>/g, '\r\n')
|
||||||
|
const html = await this.markdownService.textMarkdownToHTML(commentText, true, true)
|
||||||
this.sanitizedCommentHTML = await this.markdownService.processVideoTimestamps(html)
|
this.sanitizedCommentHTML = await this.markdownService.processVideoTimestamps(html)
|
||||||
this.newParentComments = this.parentComments.concat([ this.comment ])
|
this.newParentComments = this.parentComments.concat([ this.comment ])
|
||||||
|
|
||||||
|
|
|
@ -199,7 +199,7 @@ export class VideoCommentsComponent implements OnInit, OnChanges, OnDestroy {
|
||||||
if (confirm) {
|
if (confirm) {
|
||||||
this.inReplyToCommentId = commentToRedraft.inReplyToCommentId
|
this.inReplyToCommentId = commentToRedraft.inReplyToCommentId
|
||||||
|
|
||||||
// Display <br /> tag as a break line for editing
|
// Restore line feed for editing
|
||||||
const commentToRedraftText = commentToRedraft.text.replace(/<br.?\/?>/g, '\r\n')
|
const commentToRedraftText = commentToRedraft.text.replace(/<br.?\/?>/g, '\r\n')
|
||||||
|
|
||||||
if (commentToRedraft.threadId === commentToRedraft.id) {
|
if (commentToRedraft.threadId === commentToRedraft.id) {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user